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