Skip to content

Commit

Permalink
- Refs #21435399: Code style issues fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelpichler committed Nov 24, 2011
1 parent 128fb9c commit 911b6ec
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/php/PHP/Depend/Parser/VersionAllParser.php
Expand Up @@ -256,17 +256,17 @@ protected function parsePostfixIdentifier()
{
switch ($this->tokenizer->peek()) {

case self::T_STRING:
$node = $this->parseLiteral();
break;
case self::T_STRING:
$node = $this->parseLiteral();
break;

case self::T_CURLY_BRACE_OPEN:
$node = $this->parseCompoundExpression();
break;
case self::T_CURLY_BRACE_OPEN:
$node = $this->parseCompoundExpression();
break;

default:
$node = $this->parseCompoundVariableOrVariableVariableOrVariable();
break;
default:
$node = $this->parseCompoundVariableOrVariableVariableOrVariable();
break;
}
return $this->parseOptionalIndexExpression($node);
}
Expand Down

0 comments on commit 911b6ec

Please sign in to comment.