public function ProdCheckBase::category in Production check & Production monitor 8
Returns the title of the check
Return value
The category
Overrides ProdCheckInterface::category
File
- src/
Plugin/ ProdCheck/ ProdCheckBase.php, line 140
Class
- ProdCheckBase
- Base class for all the prod check plugins.
Namespace
Drupal\prod_check\Plugin\ProdCheckCode
public function category() {
$definition = $this
->getPluginDefinition();
return $definition['category'];
}