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