1 | <?php |
||
21 | class TransIPServiceProvider extends ServiceProvider |
||
22 | { |
||
23 | /** |
||
24 | * Boot the service provider. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function boot() |
||
32 | |||
33 | /** |
||
34 | * Setup the config. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | protected function setupConfig() |
||
48 | |||
49 | /** |
||
50 | * Register the service provider. |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | public function register() |
||
60 | |||
61 | /** |
||
62 | * Register the factory class. |
||
63 | * |
||
64 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | protected function registerFactory(Application $app) |
||
76 | |||
77 | /** |
||
78 | * Register the manager class. |
||
79 | * |
||
80 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
81 | * |
||
82 | * @return void |
||
83 | */ |
||
84 | protected function registerManager(Application $app) |
||
95 | |||
96 | /** |
||
97 | * Register the bindings. |
||
98 | * |
||
99 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | protected function registerBindings(Application $app) |
||
113 | |||
114 | /** |
||
115 | * Get the services provided by the provider. |
||
116 | * |
||
117 | * @return string[] |
||
118 | */ |
||
119 | public function provides() |
||
127 | } |
||
128 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.