Passed
Push — master ( 9aa048...898b5e )
by Mattia
04:05
created

Kernel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 17
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
        Commands\CheckUuid::class,
19
        Commands\CleanAccountsTable::class,
20
    ];
21
22
    /**
23
     * Define the application's command schedule.
24
     */
25
    protected function schedule(Schedule $schedule)
26
    {
27
    }
28
}
29