Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | protected function startingPoints(): array |
||
19 | { |
||
20 | return [ |
||
21 | Component::HEAD => new Point(4, 0), |
||
22 | Component::TORSO => new Point(4, 8), |
||
23 | Component::RIGHT_ARM => new Point(0, 8), |
||
24 | Component::LEFT_ARM => new Point(12, 8), |
||
25 | Component::RIGHT_LEG => new Point(4, 20), |
||
26 | Component::LEFT_LEG => new Point(8, 20), |
||
27 | ]; |
||
30 |