1 | <?php |
||
15 | final class Round extends AbstractRound |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritDoc} |
||
19 | */ |
||
20 | public function play(AbstractRulesSet $gameRules) |
||
35 | |||
36 | /** |
||
37 | * @return \GameDomain\Round\Step\Step |
||
38 | */ |
||
39 | protected function createStep() |
||
43 | |||
44 | /** |
||
45 | * @param \GameDomain\Rule\AbstractRulesSet $gameRules |
||
46 | * @param \GameDomain\Player\PlayerInterface $player |
||
47 | * @param \GameDomain\Round\Step\Step $step |
||
48 | * |
||
49 | * @return \GameDomain\Round\Step\StepResult |
||
50 | */ |
||
51 | protected function createStepResult(AbstractRulesSet $gameRules, PlayerInterface $player, Step $step) |
||
60 | } |
||
61 |