Completed
Push — master ( e18fa7...d4c875 )
by Jitendra
10s
created
src/Fixer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         $this->reset();
98 98
 
99
-        return $head . $this->doFix($json) . $tail;
99
+        return $head.$this->doFix($json).$tail;
100 100
     }
101 101
 
102 102
     protected function trim($json)
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     protected function quickFix($json)
122 122
     {
123 123
         if (\strlen($json) === 1 && isset($this->pairs[$json])) {
124
-            return $json . $this->pairs[$json];
124
+            return $json.$this->pairs[$json];
125 125
         }
126 126
 
127 127
         if ($json[0] !== '"') {
Please login to merge, or discard this patch.