Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 11 | private function __construct( |
|
35 | string $type, |
||
36 | string $id, |
||
37 | int $duration, |
||
38 | int $ordinal, |
||
39 | int $winningTeam |
||
40 | ) { |
||
41 | 11 | $this->type = $type; |
|
42 | 11 | $this->id = $id; |
|
43 | 11 | $this->duration = $duration; |
|
44 | 11 | $this->ordinal = $ordinal; |
|
45 | 11 | $this->winningTeam = $winningTeam; |
|
46 | 11 | } |
|
47 | |||
65 |