Passed
Push — master ( 3aec48...e18fa7 )
by Jitendra
01:25
created
src/Fixer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         $this->reset($missingValue);
63 63
 
64
-        return $head . $this->doFix(\rtrim($json), $silent) . $tail;
64
+        return $head.$this->doFix(\rtrim($json), $silent).$tail;
65 65
     }
66 66
 
67 67
     protected function trim($json)
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     protected function quickFix($json)
86 86
     {
87 87
         if (\strlen($json) === 1 && isset($this->pairs[$json])) {
88
-            return $json . $this->pairs[$json];
88
+            return $json.$this->pairs[$json];
89 89
         }
90 90
 
91 91
         if ($json[0] !== '"') {
Please login to merge, or discard this patch.