Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class ListenerAbstract implements ListenerInterface |
||
8 | { |
||
9 | /** |
||
10 | * publish |
||
11 | * |
||
12 | * @param EventInterface $event |
||
13 | * @return void |
||
14 | */ |
||
15 | public function publish(EventInterface $event) |
||
17 | // do nothing |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * return listener hash string |
||
22 | * |
||
23 | * @return string |
||
24 | */ |
||
25 | 1 | public function hash(): string |
|
30 |