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

23 lines
539 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\SaltRandomCommand::class,
2019-08-09 10:13:55 +08:00
Commands\BsInstallCommand::class,
Commands\PluginEnableCommand::class,
Commands\PluginDisableCommand::class,
2019-08-21 23:46:38 +08:00
Commands\OptionsCacheCommand::class,
2016-08-28 10:05:21 +08:00
];
}