1 | <?php |
||
9 | class ShortcodesServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Perform post-registration booting of services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
20 | |||
21 | /** |
||
22 | * Enable the compiler. |
||
23 | */ |
||
24 | public function enableCompiler() |
||
34 | |||
35 | /** |
||
36 | * Register the service provider. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function register() |
||
46 | |||
47 | /** |
||
48 | * Register short code compiler. |
||
49 | */ |
||
50 | public function registerShortcodeCompiler() |
||
56 | |||
57 | /** |
||
58 | * Register the shortcode. |
||
59 | */ |
||
60 | public function registerShortcode() |
||
66 | |||
67 | /** |
||
68 | * Register Laravel view. |
||
69 | */ |
||
70 | public function registerView() |
||
90 | |||
91 | /** |
||
92 | * Get the services provided by the provider. |
||
93 | * |
||
94 | * @return array |
||
95 | */ |
||
96 | public function provides() |
||
104 | } |
||
105 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.