| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class APAnalyticsEventServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The event listener mappings for the application. |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | protected $listen = [ |
||
| 17 | AnalyticTracked::class => [ |
||
| 18 | AnalyticTrackedListener::class, |
||
| 19 | ], |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register any events for your application. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function boot() |
||
| 33 |