mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
19 lines
409 B
PHP
19 lines
409 B
PHP
<?php
|
||
|
||
namespace app\common\console;
|
||
|
||
use base\common\command\CommandBase;
|
||
|
||
/**
|
||
* Command 命令基类(app 层入口)
|
||
*
|
||
* 这是所有命令类使用的 CommandBase 的唯一调用入口。
|
||
* 对应 ThinkPHP 的 console 目录结构(Input、Output 都在 console 下)
|
||
*
|
||
* 所有 extend/base 层的命令应该使用:use app\common\console\Command;
|
||
*/
|
||
class Command extends CommandBase
|
||
{
|
||
}
|
||
|