koel/app/Console/Kernel.php

30 lines
585 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +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 = [
\App\Console\Commands\SyncMedia::class,
];
/**
* Define the application's command schedule.
*
2015-12-14 13:22:39 +00:00
* @param \Illuminate\Console\Scheduling\Schedule $schedule
*
2015-12-13 04:42:28 +00:00
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
}