Completed
Pull Request — master (#4)
by Jan
06:55 queued 04:15
created
src/Uri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
     private function buildFromRawUri($rawUri)
189 189
     {
190 190
         if (preg_match('/^file:\/\/[A-Z]:/', $rawUri)) {
191
-            $rawUri = 'file:///' . strtr(substr($rawUri, 7), '\\', '/');
191
+            $rawUri = 'file:///'.strtr(substr($rawUri, 7), '\\', '/');
192 192
         }
193 193
 
194 194
         $this->raw = rawurldecode($rawUri);
Please login to merge, or discard this patch.