Kernel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 25
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A schedule() 0 4 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