blessing-skin-server/app/Console/Kernel.php
2019-05-07 18:47:40 +08:00

25 lines
619 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 = [
\Laravel\Passport\Console\KeysCommand::class,
Commands\KeyRandomCommand::class,
Commands\SaltRandomCommand::class,
Commands\MigratePlayersTable::class,
Commands\MigrateCloset::class,
Commands\ExecuteInstallation::class,
Commands\RegressLikesField::class,
];
}