Kernel::schedule()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

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