Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 17, 2013
1 parent be71728 commit bd4488b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Console/Input/ArgvInput.php
Expand Up @@ -286,7 +286,7 @@ public function hasParameterOption($values)

foreach ($this->tokens as $token) {
foreach ($values as $value) {
if ($token === $value || 0 === strpos($token, $value . '=')) {
if ($token === $value || 0 === strpos($token, $value.'=')) {
return true;
}
}
Expand All @@ -313,7 +313,7 @@ public function getParameterOption($values, $default = false)
$tokens = $this->tokens;
while ($token = array_shift($tokens)) {
foreach ($values as $value) {
if ($token === $value || 0 === strpos($token, $value . '=')) {
if ($token === $value || 0 === strpos($token, $value.'=')) {
if (false !== $pos = strpos($token, '=')) {
return substr($token, $pos + 1);
}
Expand Down

0 comments on commit bd4488b

Please sign in to comment.