Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class FootballEvent implements EventInterface |
||
17 | { |
||
18 | |||
19 | const GOAL = 'Goal!!!'; |
||
20 | const MISS = 'missing a ball((('; |
||
21 | const CARD = 'getting a yellow card'; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $name; |
||
27 | |||
28 | /** |
||
29 | * FootballEvent constructor. |
||
30 | * @param string $name |
||
31 | */ |
||
32 | public function __construct(string $name) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getName(): string |
||
45 |