| 1 | <?php |
||
| 8 | class Kernel extends ConsoleKernel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The Artisan commands provided by your application. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $commands = [ |
||
| 16 | // |
||
| 17 | ]; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Define the application's command schedule. |
||
| 21 | * |
||
| 22 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | 19 | protected function schedule(Schedule $schedule) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Register the Closure based commands for the application. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | protected function commands() |
||
| 49 | } |
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.