Files
ulthon_admin/extend/base/common/command/CommandBase.php
2026-03-26 20:22:34 +08:00

24 lines
372 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 base\common\command;
use think\console\Command;
/**
* 命令基类extend/base 层)
*
* 提供所有命令的基础功能
* 命令行CLI只使用文本输出
* JSON 输出由 Web API 统一处理
*/
abstract class CommandBase extends Command
{
/**
* 配置命令参数
*/
protected function configure()
{
}
}