| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class MessageQueueService implements MessageQueueServiceInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var WerkspotMessageQueueServiceInterface |
||
| 13 | */ |
||
| 14 | private $werkspotMessageQueueService; |
||
| 15 | |||
| 16 | 1 | public function __construct(WerkspotMessageQueueServiceInterface $werkspotMessageQueueService) |
|
| 17 | { |
||
| 18 | 1 | $this->werkspotMessageQueueService = $werkspotMessageQueueService; |
|
| 19 | 1 | } |
|
| 20 | |||
| 21 | 1 | public function enqueueMessage(AsynchronousMessageInterface $message): void |
|
| 29 | ); |
||
| 30 | 1 | } |
|
| 32 |