You are here

DrushInvalidateProcessor.php in Purge 8.3

File

modules/purge_drush/src/Plugin/Purge/Processor/DrushInvalidateProcessor.php
View source
<?php

namespace Drupal\purge_drush\Plugin\Purge\Processor;

use Drupal\purge\Plugin\Purge\Processor\ProcessorBase;
use Drupal\purge\Plugin\Purge\Processor\ProcessorInterface;

/**
 * Processor for the 'drush p:invalidate' command.
 *
 * @PurgeProcessor(
 *   id = "drush_purge_invalidate",
 *   label = @Translation("Drush p:invalidate"),
 *   description = @Translation("Processor for the 'drush p:invalidate' command."),
 *   enable_by_default = true,
 *   configform = "",
 * )
 */
class DrushInvalidateProcessor extends ProcessorBase implements ProcessorInterface {

}

Classes

Namesort descending Description
DrushInvalidateProcessor Processor for the 'drush p:invalidate' command.