| 1 | <?php namespace Arcanedev\LaravelApiHelper; |
||
| 11 | class ApiHelperServiceProvider extends PackageServiceProvider |
||
| 12 | { |
||
| 13 | /* ----------------------------------------------------------------- |
||
| 14 | | Properties |
||
| 15 | | ----------------------------------------------------------------- |
||
| 16 | */ |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Package name. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $package = 'api-helper'; |
||
| 24 | |||
| 25 | /* ----------------------------------------------------------------- |
||
| 26 | | Main Methods |
||
| 27 | | ----------------------------------------------------------------- |
||
| 28 | */ |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Register the service provider. |
||
| 32 | */ |
||
| 33 | 84 | public function register() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Boot the service provider. |
||
| 44 | */ |
||
| 45 | 84 | public function boot() |
|
| 53 | |||
| 54 | /** |
||
| 55 | * Get the services provided by the provider. |
||
| 56 | * |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | 4 | public function provides() |
|
| 65 | } |
||
| 66 |