Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | final class DeliveryQueueToHandlerWorker implements DeliveryQueueToHandlerWorkerInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ConsumerInterface |
||
11 | */ |
||
12 | private $deliveryQueueMessageConsumer; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $deliveryQueueName; |
||
18 | |||
19 | 3 | public function __construct( |
|
25 | 3 | } |
|
26 | |||
27 | 2 | public function startConsuming(int $maxExecutionTimeInSeconds): void |
|
32 |