Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php namespace Comodojo\Dispatcher\Events; |
||
23 | class DispatcherEvent extends AbstractEvent { |
||
24 | |||
25 | protected $dispatcher; |
||
26 | |||
27 | 1 | public function __construct(Dispatcher $dispatcher) { |
|
28 | |||
29 | 1 | parent::__construct('dispatcher'); |
|
30 | |||
31 | 1 | $this->dispatcher = $dispatcher; |
|
32 | |||
33 | 1 | } |
|
34 | |||
35 | 1 | public function getDispatcher() { |
|
38 | |||
39 | } |
||
42 |