Completed
Pull Request — master (#1)
by Timothy
08:02
created
src/Validator/JsonSchema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $message = urldecode(http_build_query($properties, null, $this->messageAttributeDelimiter));
96 96
 
97 97
         // Validation error may be returned as JSON. Replace quotes so that the message looks nice.
98
-        return str_replace('"', "'", $this->messagePrefix . $message . $this->messageSuffix);
98
+        return str_replace('"', "'", $this->messagePrefix.$message.$this->messageSuffix);
99 99
     }
100 100
 
101 101
     /**
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
         $url = parse_url($file);
113 113
         if (!array_key_exists('scheme', $url)) {
114
-            $file = 'file://' . realpath($file);
114
+            $file = 'file://'.realpath($file);
115 115
         }
116 116
 
117 117
         $refResolver = new RefResolver(new UriRetriever(), new UriResolver());
Please login to merge, or discard this patch.