diff --git a/docs/api/ZM/Command/CheckConfigCommand.md b/docs/api/ZM/Command/CheckConfigCommand.md index 7e24f1bf..546ab53e 100644 --- a/docs/api/ZM/Command/CheckConfigCommand.md +++ b/docs/api/ZM/Command/CheckConfigCommand.md @@ -3,7 +3,7 @@ ## check ```php -public function check(mixed $remote, mixed $local, Symfony\Component\Console\Output\OutputInterface $out): mixed +public function check(mixed $remote, mixed $local): mixed ``` ### 描述 @@ -16,7 +16,6 @@ public function check(mixed $remote, mixed $local, Symfony\Component\Console\Out | -------- | ---- | ----------- | | remote | mixed | | | local | mixed | | -| out | Symfony\Component\Console\Output\OutputInterface | | ### 返回 diff --git a/docs/api/ZM/Command/Command.md b/docs/api/ZM/Command/Command.md index e0e6bf35..9da5af5c 100644 --- a/docs/api/ZM/Command/Command.md +++ b/docs/api/ZM/Command/Command.md @@ -24,6 +24,23 @@ public function execute(Symfony\Component\Console\Input\InputInterface $input, S | int | | +## shouldExecute + +```php +public function shouldExecute(): bool +``` + +### 描述 + +作者很懒,什么也没有说 + +### 返回 + +| 类型 | 描述 | +| ---- | ----------- | +| bool | | + + ## handle ```php