Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | abstract class AbstractHandler implements HandlerInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var EventDispatcherInterface |
||
20 | */ |
||
21 | protected $eventDispatcher; |
||
22 | |||
23 | /** |
||
24 | * @param EventDispatcherInterface $eventDispatcher |
||
25 | */ |
||
26 | public function __construct(EventDispatcherInterface $eventDispatcher) |
||
31 |