Files
nl-admin-api/app/Console/Kernel.php

30 lines
639 B
PHP
Raw Normal View History

<?php namespace App\Console;
2014-11-18 22:48:38 -06:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2015-02-22 20:47:03 -06:00
class Kernel extends ConsoleKernel
{
2015-02-22 20:47:03 -06:00
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
'App\Console\Commands\Inspire',
];
2015-02-22 20:47:03 -06:00
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire')
->hourly();
}
}