Skip to content

Commit

Permalink
Applied suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
sebprt committed Jan 17, 2024
1 parent 01103c1 commit c362951
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Cloud/Console/Command/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
}

if (!\array_key_exists('version', $configuration)) {
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.');
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.');

return self::INVALID;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Cloud/Console/Command/RemoveCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protected function configure(): void
$this->addOption('url', 'u', mode: Console\Input\InputArgument::OPTIONAL, description: 'Base URL of the cloud instance', default: 'https://app.gyroscops.com');
$this->addOption('beta', mode: Console\Input\InputOption::VALUE_NONE, description: 'Shortcut to set the cloud instance to https://beta.gyroscops.com');
$this->addOption('ssl', mode: Console\Input\InputOption::VALUE_NEGATABLE, description: 'Enable or disable SSL');
$this->addOption('output', mode: Console\Input\InputOption::VALUE_OPTIONAL, description: 'Specify the path of the working directory');
$this->addOption('output', mode: Console\Input\InputOption::VALUE_OPTIONAL, description: 'Specify the path of the resulting tarball when building for Docker');
$this->addArgument('config', mode: Console\Input\InputArgument::REQUIRED);
}

Expand Down Expand Up @@ -87,7 +87,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
}

if (!\array_key_exists('version', $configuration)) {
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.');
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.');

return self::INVALID;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Cloud/Console/Command/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
}

if (!\array_key_exists('version', $configuration)) {
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration to version 0.3.');
$style->warning('The current version of your configuration does not allow you to use Cloud commands. Please update your configuration at least to version 0.3.');

return self::INVALID;
}
Expand Down

0 comments on commit c362951

Please sign in to comment.