Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
9 | final class SpellVanishedToTheVoid implements MatchEvent |
||
10 | { |
||
11 | private $match; |
||
12 | private $card; |
||
13 | private $player; |
||
14 | |||
15 | public function __construct( |
||
23 | } |
||
24 | |||
25 | public function aggregateId(): MatchId |
||
28 | } |
||
29 | |||
30 | public function match(): MatchId |
||
33 | } |
||
34 | |||
35 | public function card(): CardId |
||
36 | { |
||
37 | return $this->card; |
||
38 | } |
||
39 | |||
40 | public function player(): int |
||
43 | } |
||
44 | } |
||
45 |