Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Queue / QueueWorkerManagerInterface.php
1 <?php
2
3 namespace Drupal\Core\Queue;
4
5 use Drupal\Component\Plugin\PluginManagerInterface;
6
7 /**
8  * Provides an interface for a queue worker manager.
9  */
10 interface QueueWorkerManagerInterface extends PluginManagerInterface {
11
12 }