1 | <?php namespace jlourenco\support; |
||
6 | class supportServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * Perform post-registration booting of services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
18 | |||
19 | /** |
||
20 | * Register any package services. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function register() |
||
29 | |||
30 | /** |
||
31 | * Prepare the package resources. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | protected function prepareResources() |
||
42 | |||
43 | /** |
||
44 | * Register the commands. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | protected function registerCommands() |
||
52 | |||
53 | /** |
||
54 | * Register the 'jlourenco:setup' command. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | protected function registerSetupCommand() |
||
65 | |||
66 | /** |
||
67 | * Get the services provided by the provider. |
||
68 | * |
||
69 | * @return array |
||
70 | */ |
||
71 | public function provides() |
||
77 | |||
78 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.