Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types = 1); |
||
28 | 4 | public function __construct(string $exchange, string $routingKey = '', bool $nowait = false, array $arguments = []) |
|
29 | { |
||
30 | 4 | $this->exchange = $exchange; |
|
31 | 4 | $this->routingKey = $routingKey; |
|
32 | 4 | $this->nowait = $nowait; |
|
33 | 4 | $this->arguments = $arguments; |
|
34 | 4 | } |
|
61 |