Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class ConsoleKernel extends LaravelConsoleKernel |
||
11 | { |
||
12 | /** |
||
13 | * The Artisan commands provided by your application. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $commands = [ |
||
18 | BootstrapCacheCommand::class, |
||
19 | // SeedCommand::class |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Define the application's command schedule. |
||
24 | * |
||
25 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 4 | protected function schedule(Schedule $schedule) |
|
31 | // $schedule->command('inspire') |
||
32 | // ->hourly(); |
||
33 | 4 | } |
|
34 | |||
35 | /** |
||
36 | * Register the commands for the application. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | 4 | protected function commands() |
|
47 |