Files
ulthon_admin/app/common/console/Command.php
2026-03-26 20:22:34 +08:00

19 lines
409 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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
{
}