Completed
Push — master ( f57a06...06ac50 )
by Hassan
12:53
created
src/FileParser/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         if (function_exists('json_last_error_msg')) {
29 29
             $error_message = json_last_error_msg();
30 30
         } else {
31
-            $error_message  = 'Syntax error';
31
+            $error_message = 'Syntax error';
32 32
         }
33 33
 
34 34
         if (json_last_error() !== JSON_ERROR_NONE) {
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             if ($extension === 'dist') {
64 64
                 $extension = array_pop($parts);
65 65
             }
66
-            $parser    = $this->getParser($extension);
66
+            $parser = $this->getParser($extension);
67 67
 
68 68
             // Try and load file
69 69
             $this->data = array_replace_recursive($this->data, (array) $parser->parse($path));
Please login to merge, or discard this patch.