31 lines
613 B
PHP
Raw Normal View History

2021-10-08 20:44:34 +09:00
<?php
namespace App\Console;
use App\Console\Commands\RefreshItemsCache;
2021-10-08 20:44:34 +09:00
use Illuminate\Console\Scheduling\Schedule;
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
RefreshItemsCache::class,
2021-10-08 20:44:34 +09:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
//
}
}