public static function ChromePhp::checkRequirements in Devel 8
Same name and namespace in other branches
- 8.2 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\DumperCode
public static function checkRequirements() {
return class_exists('ChromePhp', TRUE);
}