Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / web / core / lib / Drupal / Core / Queue / QueueWorkerBase.php
1 <?php
2
3 namespace Drupal\Core\Queue;
4
5 use Drupal\Component\Plugin\PluginBase;
6
7 /**
8  * Provides a base implementation for a QueueWorker plugin.
9  *
10  * @see \Drupal\Core\Queue\QueueWorkerInterface
11  * @see \Drupal\Core\Queue\QueueWorkerManager
12  * @see \Drupal\Core\Annotation\QueueWorker
13  * @see plugin_api
14  */
15 abstract class QueueWorkerBase extends PluginBase implements QueueWorkerInterface {
16
17 }