| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class EventQueueWorker implements EventQueueWorkerInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var \Jellyfish\Event\EventQueueConsumerInterface |
||
| 9 | */ |
||
| 10 | protected $eventQueueConsumer; |
||
| 11 | /** |
||
| 12 | * @var \Jellyfish\Event\EventDispatcherInterface |
||
| 13 | */ |
||
| 14 | protected $eventDispatcher; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \Jellyfish\Event\EventDispatcherInterface $eventDispatcher |
||
| 18 | * @param \Jellyfish\Event\EventQueueConsumerInterface $eventQueueConsumer |
||
| 19 | */ |
||
| 20 | public function __construct( |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function start(): void |
||
| 44 |