DrushQueueWorkProcessor.php in Purge 8.3
File
modules/purge_drush/src/Plugin/Purge/Processor/DrushQueueWorkProcessor.phpView 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:queue-work' command.
*
* @PurgeProcessor(
* id = "drush_purge_queue_work",
* label = @Translation("Drush p:queue-work"),
* description = @Translation("Processor for the 'drush p:queue-work' command."),
* enable_by_default = true,
* configform = "",
* )
*/
class DrushQueueWorkProcessor extends ProcessorBase implements ProcessorInterface {
}
Classes
Name | Description |
---|---|
DrushQueueWorkProcessor | Processor for the 'drush p:queue-work' command. |