@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $characters = $state->getCharacters(); |
| 35 | 35 | $keyName = ''; |
| 36 | 36 | |
| 37 | - while($this->canParseKey($characters)) { |
|
| 37 | + while ($this->canParseKey($characters)) { |
|
| 38 | 38 | $keyName .= array_shift($characters); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | return $chars; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - if ($chars[count($chars)-1] !== Tokens::RIGHT_BRACE) { |
|
| 76 | + if ($chars[count($chars) - 1] !== Tokens::RIGHT_BRACE) { |
|
| 77 | 77 | throw new ParseException('Brace count is not equal'); |
| 78 | 78 | } |
| 79 | 79 | |