1 | <?php |
||
8 | class HashidServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = true; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the service provider. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
42 | |||
43 | /** |
||
44 | * Register service bindings. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | protected function registerServices() |
||
68 | |||
69 | /** |
||
70 | * Get singleton bindings to be registered. |
||
71 | * |
||
72 | * @return array |
||
73 | */ |
||
74 | protected function getSingletonBindings() |
||
81 | |||
82 | /** |
||
83 | * Get class aliases to be registered. |
||
84 | * |
||
85 | * @return array |
||
86 | */ |
||
87 | protected function getClassAliases() |
||
94 | |||
95 | /** |
||
96 | * Register for the console application. |
||
97 | * |
||
98 | * @return void |
||
99 | */ |
||
100 | protected function registerForConsole() |
||
106 | |||
107 | /** |
||
108 | * Get the services provided by the provider. |
||
109 | * |
||
110 | * @return string[] |
||
111 | */ |
||
112 | public function provides() |
||
118 | } |
||
119 |