Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class GeoLocationServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Boot operations. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Register the geo-location binding. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
33 | { |
||
34 | $this->app->bind('geo-location', GeoLocation::class); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Get the services provided by the provider. |
||
39 | * |
||
40 | * @return array |
||
41 | */ |
||
42 | public function provides() |
||
45 | } |
||
46 | } |
||
47 |