1 | <?php namespace Arcanedev\GeoLocation; |
||
11 | class GeoLocationServiceProvider extends PackageServiceProvider |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Properties |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Package name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $package = 'geo-location'; |
||
24 | |||
25 | /* ----------------------------------------------------------------- |
||
26 | | Main Methods |
||
27 | | ----------------------------------------------------------------- |
||
28 | */ |
||
29 | |||
30 | /** |
||
31 | * Register the service provider. |
||
32 | */ |
||
33 | 255 | public function register() |
|
45 | |||
46 | /** |
||
47 | * Boot the service provider. |
||
48 | */ |
||
49 | 255 | public function boot() |
|
55 | |||
56 | /** |
||
57 | * Get the services provided by the provider. |
||
58 | * |
||
59 | * @return array |
||
60 | */ |
||
61 | 3 | public function provides() |
|
67 | } |
||
68 |