| 1 | <?php namespace Arcanedev\LaravelTracker\Providers; |
||
| 11 | class EventServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /* ----------------------------------------------------------------- |
||
| 14 | | Properties |
||
| 15 | | ----------------------------------------------------------------- |
||
| 16 | */ |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The event listener mappings for the application. |
||
| 20 | * |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | protected $listen = [ |
||
| 24 | // |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The subscriber classes to register. |
||
| 29 | * |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | protected $subscribe = [ |
||
| 33 | \Arcanedev\LaravelTracker\EventListeners\RouteEventSubscriber::class, |
||
| 34 | ]; |
||
| 35 | |||
| 36 | /* ----------------------------------------------------------------- |
||
| 37 | | Main Methods |
||
| 38 | | ----------------------------------------------------------------- |
||
| 39 | */ |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the application's event listeners. |
||
| 43 | */ |
||
| 44 | 117 | public function boot() |
|
| 50 | } |
||
| 51 |