mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 05:42:19 +08:00
19 lines
479 B
PHP
Executable File
19 lines
479 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
protected $commands = [
|
|
\Laravel\Passport\Console\KeysCommand::class,
|
|
Commands\BsInstallCommand::class,
|
|
Commands\OptionsCacheCommand::class,
|
|
Commands\PluginDisableCommand::class,
|
|
Commands\PluginEnableCommand::class,
|
|
Commands\SaltRandomCommand::class,
|
|
Commands\UpdateCommand::class,
|
|
];
|
|
}
|