Kernel::schedule()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
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
class Kernel extends ConsoleKernel {
7
8
	/**
9
	 * The Artisan commands provided by your application.
10
	 *
11
	 * @var array
12
	 */
13
	protected $commands = [
14
		'App\Console\Commands\Inspire',
15
        'App\Console\Commands\DatabaseFaker'
16
	];
17
18
	/**
19
	 * Define the application's command schedule.
20
	 *
21
	 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
22
	 * @return void
23
	 */
24
	protected function schedule(Schedule $schedule)
25
	{
26
		$schedule->command('inspire')
27
				 ->hourly();
28
	}
29
30
}
31