You are here

public static function ChromePhp::checkRequirements in Devel 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Devel/Dumper/ChromePhp.php \Drupal\devel\Plugin\Devel\Dumper\ChromePhp::checkRequirements()

Checks if requirements for this plugin are satisfied.

Return value

bool TRUE is requirements are satisfied, FALSE otherwise.

Overrides DevelDumperInterface::checkRequirements

File

src/Plugin/Devel/Dumper/ChromePhp.php, line 36

Class

ChromePhp
Provides a ChromePhp dumper plugin.

Namespace

Drupal\devel\Plugin\Devel\Dumper

Code

public static function checkRequirements() {
  return class_exists('ChromePhp', TRUE);
}