Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function __construct( |
|
25 | Protocol $protocol, |
||
26 | Manager $manager, |
||
27 | IPC $ipc, |
||
28 | Name $name, |
||
29 | Trigger $trigger, |
||
30 | Agent ...$agents |
||
31 | ) { |
||
32 | 2 | $this->protocol = $protocol; |
|
33 | 2 | $this->manager = $manager; |
|
34 | 2 | $this->ipc = $ipc; |
|
35 | 2 | $this->name = $name; |
|
36 | 2 | $this->trigger = $trigger; |
|
37 | 2 | $this->agents = $agents; |
|
38 | 2 | } |
|
65 |