Skip to content

Commit

Permalink
Merge pull request #1150 from deployphp/analysis-XWpeky
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
antonmedv committed Apr 6, 2017
2 parents 7117ac8 + 9b16b33 commit f5894c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/SshCommand.php
Expand Up @@ -65,7 +65,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
if (count($hosts) === 0) {
$output->writeln('No remote hosts.');
return; // Because there are no hosts.
} else if (count($hosts) === 1) {
} elseif (count($hosts) === 1) {
$host = array_shift($hosts);
} else {
$helper = $this->getHelper('question');
Expand Down

0 comments on commit f5894c2

Please sign in to comment.