This commit is contained in:
crazywhalecc
2024-10-02 20:31:16 +08:00
committed by Jerry Ma
parent 2d9f879994
commit ef1a9646e4
72 changed files with 107 additions and 234 deletions

View File

@@ -20,9 +20,6 @@ class PluginInstallCommand extends PluginCommand
$this->addOption('github-token', null, InputOption::VALUE_REQUIRED, '提供的 GitHub Token');
}
/**
* {@inheritDoc}
*/
protected function handle(): int
{
$addr = $this->input->getArgument('address');

View File

@@ -27,7 +27,6 @@ class PluginMakeCommand extends PluginCommand
}
/**
* {@inheritDoc}
* @throws FileSystemException
*/
protected function handle(): int

View File

@@ -19,9 +19,6 @@ class PluginPackCommand extends PluginCommand
$this->addOption('build-dir', 'D', InputOption::VALUE_REQUIRED, '指定输出文件位置', WORKING_DIR . '/build');
}
/**
* {@inheritDoc}
*/
protected function handle(): int
{
try {

View File

@@ -17,9 +17,6 @@ class PluginRemoveCommand extends PluginCommand
$this->addArgument('name', InputArgument::REQUIRED, '插件名称');
}
/**
* {@inheritDoc}
*/
protected function handle(): int
{
$plugin_name = $this->input->getArgument('name');