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

Kernel::schedule()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 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