Completed
Push — development ( 3b49f3...5c8139 )
by Claudio
02:03
created

Kernel::schedule()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
namespace App\Console;
4
5
use Illuminate\Console\Scheduling\Schedule;
6
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
7
8
/**
9
 * Class Kernel
10
 */
11
class Kernel extends ConsoleKernel
12
{
13
    /**
14
     * The Artisan commands provided by your application.
15
     *
16
     * @var array
17
     */
18
    protected $commands = [
19
        Commands\Setup::class,
20
    ];
21
22
    /**
23
     * Define the application's command schedule.
24
     *
25
     * @param  \Illuminate\Console\Scheduling\Schedule $schedule
26
     * @return void
27
     */
28
    protected function schedule(Schedule $schedule)
29
    {
30
    }
31
}