1 | <?php |
||
9 | class HashidServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Indicates if loading of the provider is deferred. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $defer = true; |
||
17 | |||
18 | /** |
||
19 | * Bootstrap the service provider. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | 5 | public function boot() |
|
27 | |||
28 | /** |
||
29 | * Register the service provider. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | 5 | public function register() |
|
43 | |||
44 | /** |
||
45 | * Register service bindings. |
||
46 | * |
||
47 | * @return void |
||
48 | */ |
||
49 | 5 | protected function registerServices() |
|
69 | |||
70 | /** |
||
71 | * Get singleton bindings to be registered. |
||
72 | * |
||
73 | * @return array |
||
74 | */ |
||
75 | 5 | protected function getSingletonBindings() |
|
82 | |||
83 | /** |
||
84 | * Get class aliases to be registered. |
||
85 | * |
||
86 | * @return array |
||
87 | */ |
||
88 | 5 | protected function getClassAliases() |
|
95 | |||
96 | /** |
||
97 | * Register for the console application. |
||
98 | * |
||
99 | * @return void |
||
100 | */ |
||
101 | 5 | protected function registerForConsole() |
|
111 | |||
112 | /** |
||
113 | * Get the services provided by the provider. |
||
114 | * |
||
115 | * @return string[] |
||
116 | */ |
||
117 | 2 | public function provides() |
|
123 | } |
||
124 |