Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class FootballObserver implements ObserverInterface |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $observerName; |
||
25 | |||
26 | /** |
||
27 | * FootballObserver constructor. |
||
28 | * |
||
29 | * @param $observerName |
||
30 | */ |
||
31 | public function __construct(string $observerName) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getObserverName(): string |
||
44 |