koel/app/Console/Kernel.php
2018-08-19 23:03:02 +02:00

31 lines
635 B
PHP

<?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 = [
Commands\SyncMediaCommand::class,
Commands\InitCommand::class,
Commands\GenerateJwtSecretCommand::class,
];
/**
* Define the application's command schedule.
*
* @param Schedule $schedule
*
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
}