koel/app/Console/Kernel.php

32 lines
635 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 = [
2018-08-19 15:26:34 +00:00
Commands\SyncMediaCommand::class,
2018-08-19 21:01:01 +00:00
Commands\InitCommand::class,
2018-08-19 20:48:47 +00:00
Commands\GenerateJwtSecretCommand::class,
2015-12-13 04:42:28 +00:00
];
/**
* Define the application's command schedule.
*
2016-02-03 15:39:15 +00:00
* @param Schedule $schedule
2015-12-14 13:22:39 +00:00
*
2015-12-13 04:42:28 +00:00
* @return void
*/
protected function schedule(Schedule $schedule)
{
}
}