Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class TrackingEventServiceProvider extends EventServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * The event listener mappings for the application. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $listen = [ |
||
21 | // Activity Tracking |
||
22 | TrackActivityEvent::class => [ |
||
23 | TrackActivityListener::class, |
||
24 | ], |
||
25 | |||
26 | // Traffic Tracking |
||
27 | TrackTrafficEvent::class => [ |
||
28 | TrackTrafficListener::class, |
||
29 | ], |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * Register any events for your application. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function boot() |
||
45 |