1 | <?php |
||
14 | class VueOpdServiceProvider extends ServiceProvider |
||
15 | { |
||
16 | /** |
||
17 | * Indicates if loading of the provider is deferred. |
||
18 | * |
||
19 | * @var bool |
||
20 | */ |
||
21 | protected $defer = false; |
||
22 | |||
23 | /** |
||
24 | * Bootstrap the application events. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function boot() |
||
39 | |||
40 | /** |
||
41 | * Register the service provider. |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function register() |
||
57 | |||
58 | /** |
||
59 | * Get the services provided by the provider. |
||
60 | * |
||
61 | * @return array |
||
62 | */ |
||
63 | public function provides() |
||
70 | |||
71 | /** |
||
72 | * Loading and publishing package's config |
||
73 | * |
||
74 | * @return void |
||
75 | */ |
||
76 | protected function configHandle() |
||
87 | |||
88 | /** |
||
89 | * Loading package routes |
||
90 | * |
||
91 | * @return void |
||
92 | */ |
||
93 | protected function routeHandle() |
||
97 | |||
98 | /** |
||
99 | * Loading and publishing package's translations |
||
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | protected function langHandle() |
||
113 | |||
114 | /** |
||
115 | * Loading and publishing package's views |
||
116 | * |
||
117 | * @return void |
||
118 | */ |
||
119 | protected function viewHandle() |
||
129 | |||
130 | /** |
||
131 | * Publishing package's assets (JavaScript, CSS, images...) |
||
132 | * |
||
133 | * @return void |
||
134 | */ |
||
135 | protected function assetHandle() |
||
143 | |||
144 | /** |
||
145 | * Publishing package's migrations |
||
146 | * |
||
147 | * @return void |
||
148 | */ |
||
149 | protected function migrationHandle() |
||
159 | |||
160 | public function publicHandle() |
||
168 | |||
169 | public function seedHandle() |
||
177 | } |
||
178 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.