1 | <?php |
||
10 | class Kernel extends ConsoleKernel |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | protected $commands = []; |
||
16 | |||
17 | /** |
||
18 | * Define the application's command schedule. |
||
19 | * |
||
20 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | protected function schedule(Schedule $schedule): void |
||
29 | |||
30 | /** |
||
31 | * Register the commands for the application. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | protected function commands(): void |
||
39 | } |
||
40 |