Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class EventHandler extends AbstractHandler |
||
20 | { |
||
21 | /** @var ListenerRegistryInterface */ |
||
22 | private $listenerRegistry; |
||
23 | |||
24 | /** |
||
25 | * @param ListenerRegistryInterface $listenerRegistry |
||
26 | * @param int $level |
||
27 | * @param bool $bubble |
||
28 | */ |
||
29 | public function __construct( |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param array $record |
||
41 | * @return bool|void |
||
42 | */ |
||
43 | public function handle(array $record) |
||
58 |