| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class QueueBuilder implements QueueBuilderInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \Xervice\RabbitMQ\Business\Model\Core\QueueProviderInterface |
||
| 13 | */ |
||
| 14 | private $queueProvider; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \Xervice\RabbitMQ\Business\Model\Queue\QueueCollection |
||
| 18 | */ |
||
| 19 | private $queueCollection; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * QueueBuilder constructor. |
||
| 23 | * |
||
| 24 | * @param \Xervice\RabbitMQ\Business\Model\Core\QueueProviderInterface $queueProvider |
||
| 25 | * @param \Xervice\RabbitMQ\Business\Model\Queue\QueueCollection $queueCollection |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 33 | } |
||
| 34 | |||
| 35 | public function buildQueues(): void |
||
| 42 | } |