Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class FootballObserver implements ObserverInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $observerName; |
||
18 | |||
19 | /** |
||
20 | * FootballObserver constructor. |
||
21 | * @param string $observerName |
||
22 | */ |
||
23 | public function __construct(string $observerName) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getObserverName(): string |
||
36 |