Completed
Push — master ( 759e75...59dba5 )
by Shane
02:24
created
src/PhpHocon/Token/Parser/KeyParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/PhpHocon/Token/HoconTokenizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.