You are here

public function QueuerBase::getDescription in Purge 8.3

Retrieve the description of this queuer.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translated description.

Overrides QueuerInterface::getDescription

File

src/Plugin/Purge/Queuer/QueuerBase.php, line 22

Class

QueuerBase
Provides base implementations for queuers.

Namespace

Drupal\purge\Plugin\Purge\Queuer

Code

public function getDescription() {
  return $this
    ->getPluginDefinition()['description'];
}