| 1 | <?php namespace LaravelZero\Framework\Commands\Component\Illuminate\Events; |
||
| 5 | class EventServiceProvider extends ServiceProvider |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The event handler mappings for the application. |
||
| 9 | * |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $listen = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The subscriber classes to register. |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $subscribe = []; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Register the application's event listeners. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function boot() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function register() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Get the events and handlers. |
||
| 50 | * |
||
| 51 | * @return array |
||
| 52 | */ |
||
| 53 | public function listens() |
||
| 57 | } |
||
| 58 |