| 1 | <?php |
||
| 7 | class TrelloServiceProvider extends LaravelServiceProvider { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = false; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Bootstrap the application events. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function boot() { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Register the service provider. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function register() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get the services provided by the provider. |
||
| 40 | * |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | public function provides() { |
||
| 47 | |||
| 48 | private function handleConfigs() { |
||
| 56 | } |
||
| 57 |