1 | <?php |
||
6 | class ConsoleServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | /** |
||
9 | * @var bool $defer Indicates if loading of the provider is deferred. |
||
10 | */ |
||
11 | protected $defer = false; |
||
12 | |||
13 | /** |
||
14 | * Boot the service provider. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function boot() |
||
22 | |||
23 | /** |
||
24 | * Register the service provider. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
58 | |||
59 | /** |
||
60 | * Register the "module:enable" console command. |
||
61 | * |
||
62 | * @return Console\ModuleEnableCommand |
||
63 | */ |
||
64 | protected function registerEnableCommand() |
||
70 | |||
71 | /** |
||
72 | * Register the "module:disable" console command. |
||
73 | * |
||
74 | * @return Console\ModuleDisableCommand |
||
75 | */ |
||
76 | protected function registerDisableCommand() |
||
82 | |||
83 | /** |
||
84 | * Register the "module:make" console command. |
||
85 | * |
||
86 | * @return Console\ModuleMakeCommand |
||
87 | */ |
||
88 | protected function registerMakeCommand() |
||
96 | |||
97 | /** |
||
98 | * Register the "module:make:migration" console command. |
||
99 | * |
||
100 | * @return Console\ModuleMakeMigrationCommand |
||
101 | */ |
||
102 | protected function registerMakeMigrationCommand() |
||
110 | |||
111 | /** |
||
112 | * Register the "module:make:request" console command. |
||
113 | * |
||
114 | * @return Console\ModuleMakeRequestCommand |
||
115 | */ |
||
116 | protected function registerMakeRequestCommand() |
||
124 | |||
125 | /** |
||
126 | * Register the "module:migrate" console command. |
||
127 | * |
||
128 | * @return Console\ModuleMigrateCommand |
||
129 | */ |
||
130 | protected function registerMigrateCommand() |
||
136 | |||
137 | /** |
||
138 | * Register the "module:migrate:refresh" console command. |
||
139 | * |
||
140 | * @return Console\ModuleMigrateRefreshCommand |
||
141 | */ |
||
142 | protected function registerMigrateRefreshCommand() |
||
148 | |||
149 | /** |
||
150 | * Register the "module:migrate:reset" console command. |
||
151 | * |
||
152 | * @return Console\ModuleMigrateResetCommand |
||
153 | */ |
||
154 | protected function registerMigrateResetCommand() |
||
160 | |||
161 | /** |
||
162 | * Register the "module:migrate:rollback" console command. |
||
163 | * |
||
164 | * @return Console\ModuleMigrateRollbackCommand |
||
165 | */ |
||
166 | protected function registerMigrateRollbackCommand() |
||
172 | |||
173 | /** |
||
174 | * Register the "module:seed" console command. |
||
175 | * |
||
176 | * @return Console\ModuleSeedCommand |
||
177 | */ |
||
178 | protected function registerSeedCommand() |
||
184 | |||
185 | /** |
||
186 | * Register the "module:list" console command. |
||
187 | * |
||
188 | * @return Console\ModuleListCommand |
||
189 | */ |
||
190 | protected function registerListCommand() |
||
196 | |||
197 | /** |
||
198 | * Register the "module:make:controller" console command. |
||
199 | * |
||
200 | * @return Console\ModuleMakeControllerCommand |
||
201 | */ |
||
202 | protected function registerMakeControllerCommand() |
||
210 | |||
211 | } |
||
212 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.