Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | class Kernel extends ConsoleKernel |
||
35 | { |
||
36 | /** |
||
37 | * The Artisan commands provided by your application. |
||
38 | * |
||
39 | * @var array |
||
40 | */ |
||
41 | protected $commands = [ |
||
42 | // |
||
43 | ]; |
||
44 | |||
45 | /** |
||
46 | * Define the application's command schedule. |
||
47 | * |
||
48 | * @param Schedule $schedule |
||
49 | * @return void |
||
50 | */ |
||
51 | protected function schedule(Schedule $schedule): void |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * Register the commands for the application. |
||
57 | * |
||
58 | * @return void |
||
59 | */ |
||
60 | protected function commands(): void |
||
67 |