| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 9 | final class DummyPuzzle implements Puzzle |
||
| 10 | { |
||
| 11 | public function representation(): string |
||
| 14 | } |
||
| 15 | |||
| 16 | public function afterMaking(Move ...$moves): Puzzle |
||
| 17 | { |
||
| 18 | return $this; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function isSolved(): bool |
||
| 22 | { |
||
| 23 | return true; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function movesSoFar(): Moves |
||
| 29 | } |
||
| 30 | |||
| 31 | public function possibleMoves(): Moves |
||
| 36 |