Completed
Push — master ( fb95ee...b3e448 )
by Oscar
9s
created
src/Middleware/JsonSchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,6 +126,6 @@
 block discarded – undo
126 126
             return $path;
127 127
         }
128 128
 
129
-        return 'file://' . $path;
129
+        return 'file://'.$path;
130 130
     }
131 131
 }
Please login to merge, or discard this patch.
src/Transformers/BodyParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function json(StreamInterface $body)
53 53
     {
54
-        $assoc = (bool)$this->options['forceArray'];
54
+        $assoc = (bool) $this->options['forceArray'];
55 55
 
56 56
         $data = json_decode((string) $body, $assoc);
57 57
 
Please login to merge, or discard this patch.