mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-24 09:05:34 +08:00
add plugin command bootstrappers
This commit is contained in:
@@ -13,16 +13,15 @@ use ZM\Plugin\PluginManager;
|
||||
|
||||
abstract class PluginCommand extends Command
|
||||
{
|
||||
protected array $bootstrappers = [
|
||||
BootStrap\RegisterLogger::class,
|
||||
Bootstrap\SetInternalTimezone::class,
|
||||
Bootstrap\LoadConfiguration::class,
|
||||
Bootstrap\LoadPlugins::class,
|
||||
];
|
||||
|
||||
/** @var null|string 动态插件和 Phar 插件的加载目录 */
|
||||
protected ?string $plugin_dir = null;
|
||||
|
||||
public function __construct(string $name = null)
|
||||
{
|
||||
parent::__construct($name);
|
||||
$this->emitBootstrap(Bootstrap\LoadPlugins::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* 插件名称合规验证器
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user