| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class PlayPhaseStarted implements MatchEvent |
||
| 9 | { |
||
| 10 | /** @var MatchId */ |
||
| 11 | private $match; |
||
| 12 | |||
| 13 | public function __construct(MatchId $match) |
||
| 14 | { |
||
| 15 | $this->match = $match; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function match(): MatchId |
||
| 21 | } |
||
| 22 | |||
| 23 | public function aggregateId(): MatchId |
||
| 26 | } |
||
| 27 | } |
||
| 28 |