Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class Kernel extends ConsoleKernel |
||
11 | { |
||
12 | /** |
||
13 | * The Artisan commands provided by your application. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $commands = [ |
||
18 | // |
||
19 | ]; |
||
20 | |||
21 | /** |
||
22 | * Define the application's command schedule. |
||
23 | * |
||
24 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
25 | * @return void |
||
26 | * @codeCoverageIgnore |
||
27 | */ |
||
28 | protected function schedule(Schedule $schedule) |
||
29 | { |
||
30 | // |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Register the commands for the application. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | 58 | protected function commands() |
|
41 | 58 | } |
|
42 | } |
||
43 |