Kernel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A schedule() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Minepic\Console;
6
7
use Illuminate\Console\Scheduling\Schedule;
8
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
9
10
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
     * Define the application's command schedule.
21
     */
22
    protected function schedule(Schedule $schedule)
23
    {
24
    }
25
}
26