1 | <?php |
||
10 | class TrackingServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | /** |
||
13 | * Register the service provider. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | 38 | public function register() |
|
23 | |||
24 | /** |
||
25 | * Register the factory. |
||
26 | */ |
||
27 | 38 | protected function registerFactory() |
|
40 | |||
41 | /** |
||
42 | * Register the trackers. |
||
43 | */ |
||
44 | 38 | protected function registerTrackers() |
|
54 | |||
55 | /** |
||
56 | * Register the trackers routes and published package assets. |
||
57 | * |
||
58 | * @param \Illuminate\Routing\Router $router |
||
59 | */ |
||
60 | 38 | public function boot(Router $router) |
|
74 | } |
||
75 |