1 | <?php |
||
8 | class IlluminateEventDispatcher implements EventDispatcher |
||
9 | { |
||
10 | protected $dispatcher; |
||
11 | |||
12 | /** |
||
13 | * @param Dispatcher $dispatcher |
||
14 | */ |
||
15 | public function __construct(Dispatcher $dispatcher) |
||
19 | |||
20 | /** |
||
21 | * @param string $event The event name |
||
22 | * @param array $data The event data |
||
23 | * @return void |
||
24 | */ |
||
25 | public function dispatch($event, $data = []) |
||
29 | } |
||
30 |