| 1 | <?php namespace App\Console; |
||
| 7 | class Kernel extends ConsoleKernel { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * The Artisan commands provided by your application. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $commands = [ |
||
| 15 | //'App\Console\Commands\Inspire', |
||
| 16 | //'App\Console\Commands\CallRoute', |
||
| 17 | //'App\Console\Commands\Generic', |
||
| 18 | ]; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Define the application's command schedule. |
||
| 22 | * |
||
| 23 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | protected function schedule(Schedule $schedule) |
||
| 30 | |||
| 31 | } |
||
| 32 |