1 | <?php namespace Indatus\Dispatcher; |
||
15 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
16 | { |
||
17 | /** |
||
18 | * Indicates if loading of the provider is deferred. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $defer = true; |
||
23 | |||
24 | /** |
||
25 | * Bootstrap the application events. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 94 | public function boot() |
|
45 | |||
46 | /** |
||
47 | * Register the service provider. |
||
48 | * |
||
49 | * @codeCoverageIgnore |
||
50 | * @return void |
||
51 | */ |
||
52 | public function register() |
||
56 | |||
57 | /** |
||
58 | * Get the services provided by the provider. |
||
59 | * |
||
60 | * @return array |
||
61 | */ |
||
62 | 94 | public function provides() |
|
70 | |||
71 | /** |
||
72 | * Register artisan commands |
||
73 | * @codeCoverageIgnore |
||
74 | */ |
||
75 | private function registerCommands() |
||
94 | } |
||
95 |