| 1 | <?php namespace Xaoc303\BattleCalc; |
||
| 9 | class BattleCalcServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Indicates if loading of the provider is deferred. |
||
| 14 | * |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | protected $defer = false; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Bootstrap the application events. |
||
| 21 | * |
||
| 22 | * @return void |
||
| 23 | */ |
||
| 24 | public function boot() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Register the service provider. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function register() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get the services provided by the provider. |
||
| 42 | * |
||
| 43 | * @return array |
||
| 44 | */ |
||
| 45 | public function provides() |
||
| 49 | } |
||
| 50 |