| 1 | <?php namespace Arcanedev\LaravelTracker\Providers; |
||
| 13 | class EventServiceProvider extends ServiceProvider |
||
| 14 | { |
||
| 15 | /* ------------------------------------------------------------------------------------------------ |
||
| 16 | | Properties |
||
| 17 | | ------------------------------------------------------------------------------------------------ |
||
| 18 | */ |
||
| 19 | /** |
||
| 20 | * The event listener mappings for the application. |
||
| 21 | * |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | protected $listen = [ |
||
| 25 | \Illuminate\Routing\Events\RouteMatched::class => [ |
||
| 26 | \Arcanedev\LaravelTracker\EventListeners\TrackMatchedRoute::class |
||
| 27 | ], |
||
| 28 | ]; |
||
| 29 | |||
| 30 | /* ------------------------------------------------------------------------------------------------ |
||
| 31 | | Main Functions |
||
| 32 | | ------------------------------------------------------------------------------------------------ |
||
| 33 | */ |
||
| 34 | /** |
||
| 35 | * Register any events for your application. |
||
| 36 | */ |
||
| 37 | 194 | public function boot() |
|
| 43 | } |
||
| 44 |