2015-08-30 13:22:00 +02: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 = [
|
2015-09-08 12:57:28 +02:00
|
|
|
\App\Console\Commands\MigrateOldData::class,
|
|
|
|
\App\Console\Commands\RefreshCache::class,
|
2015-09-10 13:15:19 +02:00
|
|
|
\App\Console\Commands\ImportMLPMA::class,
|
|
|
|
\App\Console\Commands\ClassifyMLPMA::class,
|
2015-09-10 13:30:59 +02:00
|
|
|
\App\Console\Commands\RebuildTags::class,
|
2015-08-30 13:22:00 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|