Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | 4 | public function __construct( |
|
17 | int $x, |
||
18 | int $y, |
||
19 | int $systemFieldId, |
||
20 | bool $colonyShieldState, |
||
21 | ?string $subspaceCode, |
||
22 | ?string $displayCount |
||
23 | ) { |
||
24 | 4 | parent::__construct($subspaceCode, $displayCount); |
|
25 | |||
26 | 4 | $this->x = $x; |
|
27 | 4 | $this->y = $y; |
|
28 | 4 | $this->systemFieldId = $systemFieldId; |
|
29 | 4 | $this->colonyShieldState = $colonyShieldState; |
|
30 | } |
||
55 |