| 1 | <?php |
||
| 10 | class HangmanGameStartedEvent extends HangmanBasicResultEvent implements AllPlayersResult |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | const NAME = 'hangman.started'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor |
||
| 19 | * |
||
| 20 | * @param MiniGameId $gameId |
||
| 21 | * @param PlayerId $playerId |
||
| 22 | */ |
||
| 23 | 51 | public function __construct(MiniGameId $gameId, PlayerId $playerId = null) |
|
| 27 | } |
||
| 28 |