photo/app/Console/Kernel.php

32 lines
667 B
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
2016-06-22 05:49:20 +00:00
Commands\Import::class,
2016-06-29 04:04:02 +00:00
Commands\Move::class,
2016-06-20 13:35:59 +00:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
}
}