| 1 | <?php |
||
| 9 | trait PlayTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Allows the player to play the game |
||
| 13 | * |
||
| 14 | * @param PlayerId $playerId |
||
| 15 | * @param Move $move |
||
| 16 | * |
||
| 17 | * @throws IllegalMoveException |
||
| 18 | * |
||
| 19 | * @return GameResult |
||
| 20 | */ |
||
| 21 | 6 | public function play(PlayerId $playerId, Move $move) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @param Move $move |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | 6 | private function getClassName(Move $move) |
|
| 43 | } |
||
| 44 |