Completed
Pull Request — master (#44)
by Timothy
02:37
created
src/Middleware/JsonSchema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             try {
45 45
                 $value = $this->bodyParser->json($stream, $assoc = false);
46 46
             } catch (\DomainException $e) {
47
-                return $this->invalidateResponse($response, 'Malformed JSON: ' . $e->getMessage());
47
+                return $this->invalidateResponse($response, 'Malformed JSON: '.$e->getMessage());
48 48
             }
49 49
 
50 50
             $validator = new Validator();
@@ -125,6 +125,6 @@  discard block
 block discarded – undo
125 125
             return $path;
126 126
         }
127 127
 
128
-        return 'file://' . $path;
128
+        return 'file://'.$path;
129 129
     }
130 130
 }
Please login to merge, or discard this patch.