Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
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( |
|
29 | string $destination, |
||
30 | string $routingKey = '', |
||
31 | bool $nowait = false, |
||
32 | array $arguments = [] |
||
33 | ) { |
||
34 | 4 | $this->destination = $destination; |
|
35 | 4 | $this->routingKey = $routingKey; |
|
36 | 4 | $this->nowait = $nowait; |
|
37 | 4 | $this->arguments = $arguments; |
|
38 | 4 | } |
|
65 |