koel/app/Console/Kernel.php

32 lines
614 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 = [
2016-02-03 15:39:15 +00:00
Commands\SyncMedia::class,
Commands\Init::class,
Commands\GenerateJWTSecret::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)
{
}
}