You are here

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\ProdCheck

Code

public function category() {
  $definition = $this
    ->getPluginDefinition();
  return $definition['category'];
}