| 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 | 23 | $this->id = $id; |
|
| 24 | 23 | $this->type = $type; |
|
| 25 | 23 | $this->information = $information; |
|
| 26 | 23 | $this->ring = $ring; |
|
| 27 | 23 | $this->sound = $sound; |
|
| 28 | } |
||
| 29 | |||
| 41 |