Skip to content

Commit

Permalink
[FIX] Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Apr 3, 2020
1 parent be7a740 commit 7391cfd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Command/SelfUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ protected function configure(): void
'GitHub stability value (' . GithubStrategy::STABLE . ', ' . GithubStrategy::UNSTABLE . ', ' . GithubStrategy::ANY . ')',
GithubStrategy::STABLE
)->addOption(
'check',
null,
InputOption::VALUE_NONE,
'Check for new version'
)->addOption(
'rollback',
null,
InputOption::VALUE_NONE,
'Rolls back to previous version'
)->setDescription(sprintf('Update %s to most recent stable build', $this->getLocalPharName()));
'check',
null,
InputOption::VALUE_NONE,
'Check for new version'
)->addOption(
'rollback',
null,
InputOption::VALUE_NONE,
'Rolls back to previous version'
)->setDescription(sprintf('Update %s to most recent stable build', $this->getLocalPharName()));
}

protected function execute(InputInterface $input, OutputInterface $output): int
Expand Down

0 comments on commit 7391cfd

Please sign in to comment.