You are here

public function TotalSucceededStatistic::getDescription in Purge 8.3

Gets the description of the counter.

Return value

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

Overrides ExplainedCounterInterface::getDescription

File

src/Plugin/Purge/Queue/TotalSucceededStatistic.php, line 42

Class

TotalSucceededStatistic
Total number of succeeded queue items.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function getDescription() {
  return $this
    ->t('When queue items are successfully processed, they are deleted from the queue to make space for new items. This statistic represents all of the successful cache invalidations that happened over time.');
}