| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Kernel extends ConsoleKernel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Define the application's command schedule. |
||
| 12 | * |
||
| 13 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 14 | * @return void |
||
| 15 | */ |
||
| 16 | protected function schedule(Schedule $schedule) |
||
| 17 | { |
||
| 18 | // $schedule->command('inspire')->hourly(); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Register the commands for the application. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | protected function commands() |
||
| 31 | } |
||
| 32 | } |
||
| 33 |