Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
22 | 23 | public function __construct(int $id, Type $type, Information $information, Ring $ring, BaseSound $sound) |
|
23 | { |
||
24 | 23 | $this->id = $id; |
|
25 | 23 | $this->type = $type; |
|
26 | 23 | $this->information = $information; |
|
27 | 23 | $this->ring = $ring; |
|
28 | 23 | $this->sound = $sound; |
|
29 | } |
||
42 |