QueueWorkerBase.php 393 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Core\Queue;
  3. use Drupal\Component\Plugin\PluginBase;
  4. /**
  5. * Provides a base implementation for a QueueWorker plugin.
  6. *
  7. * @see \Drupal\Core\Queue\QueueWorkerInterface
  8. * @see \Drupal\Core\Queue\QueueWorkerManager
  9. * @see \Drupal\Core\Annotation\QueueWorker
  10. * @see plugin_api
  11. */
  12. abstract class QueueWorkerBase extends PluginBase implements QueueWorkerInterface {
  13. }