Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function __construct(ConnectionInterface $connection, QueueRestartManagerInterface $queueRestartManager, string $channelId = '') |
||
34 | { |
||
35 | $this->connection = $connection; |
||
36 | $this->queueRestartManager = $queueRestartManager; |
||
37 | $this->channel = $this->connection->getChannel($channelId); |
||
38 | } |
||
39 | |||
64 |