Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Jan 16, 2017
1 parent df36f91 commit 6ac8d56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Console/ConsoleOptionParser.php
Expand Up @@ -731,6 +731,7 @@ public function help($subcommand = null, $format = 'text', $width = 72)
$subparser->setDescription($command->getRawHelp());
}
$subparser->setCommand($this->getCommand() . ' ' . $subcommand);

return $subparser->help(null, $format, $width);
}

Expand Down Expand Up @@ -818,7 +819,7 @@ protected function _parseOption($name, $params)
if ($option->validChoice($value)) {
if ($option->acceptsMultiple($value)) {
$params[$name][] = $value;
} else {
fi } else {
$params[$name] = $value;
}

Expand Down

1 comment on commit 6ac8d56

@antograssiot
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I knew I shoudn't use the online editor 😢
Thanks @savant

Please sign in to comment.