blessing-skin-server/app/Console/Kernel.php

24 lines
575 B
PHP
Raw Normal View History

2016-08-28 10:05:21 +08:00
<?php
namespace App\Console;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
2019-05-07 18:47:40 +08:00
\Laravel\Passport\Console\KeysCommand::class,
Commands\KeyRandomCommand::class,
Commands\SaltRandomCommand::class,
Commands\MigratePlayersTable::class,
2019-03-14 23:55:49 +08:00
Commands\MigrateCloset::class,
2019-03-23 16:36:54 +08:00
Commands\ExecuteInstallation::class,
Commands\RegressLikesField::class,
2016-08-28 10:05:21 +08:00
];
}