Completed
Push — master ( ac4cc7...3c4d8e )
by Tobias
03:01
created
src/Uri.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             $this->query = isset($parts['query']) ? $this->filterQueryAndFragment($parts['query']) : '';
61 61
             $this->fragment = isset($parts['fragment']) ? $this->filterQueryAndFragment($parts['fragment']) : '';
62 62
             if (isset($parts['pass'])) {
63
-                $this->userInfo .= ':' . $parts['pass'];
63
+                $this->userInfo .= ':'.$parts['pass'];
64 64
             }
65 65
         }
66 66
     }
@@ -83,11 +83,11 @@  discard block
 block discarded – undo
83 83
 
84 84
         $authority = $this->host;
85 85
         if ('' !== $this->userInfo) {
86
-            $authority = $this->userInfo . '@' . $authority;
86
+            $authority = $this->userInfo.'@'.$authority;
87 87
         }
88 88
 
89 89
         if (null !== $this->port) {
90
-            $authority .= ':' . $this->port;
90
+            $authority .= ':'.$this->port;
91 91
         }
92 92
 
93 93
         return $authority;
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     {
145 145
         $info = $user;
146 146
         if (null !== $password && '' !== $password) {
147
-            $info .= ':' . $password;
147
+            $info .= ':'.$password;
148 148
         }
149 149
 
150 150
         if ($this->userInfo === $info) {
@@ -228,24 +228,24 @@  discard block
 block discarded – undo
228 228
     {
229 229
         $uri = '';
230 230
         if ('' !== $scheme) {
231
-            $uri .= $scheme . ':';
231
+            $uri .= $scheme.':';
232 232
         }
233 233
 
234 234
         if ('' !== $authority) {
235
-            $uri .= '//' . $authority;
235
+            $uri .= '//'.$authority;
236 236
         }
237 237
 
238 238
         if ('' !== $path) {
239 239
             if ('/' !== $path[0]) {
240 240
                 if ('' !== $authority) {
241 241
                     // If the path is rootless and an authority is present, the path MUST be prefixed by "/"
242
-                    $path = '/' . $path;
242
+                    $path = '/'.$path;
243 243
                 }
244 244
             } elseif (isset($path[1]) && '/' === $path[1]) {
245 245
                 if ('' === $authority) {
246 246
                     // If the path is starting with more than one "/" and no authority is present, the
247 247
                     // starting slashes MUST be reduced to one.
248
-                    $path = '/' . \ltrim($path, '/');
248
+                    $path = '/'.\ltrim($path, '/');
249 249
                 }
250 250
             }
251 251
 
@@ -253,11 +253,11 @@  discard block
 block discarded – undo
253 253
         }
254 254
 
255 255
         if ('' !== $query) {
256
-            $uri .= '?' . $query;
256
+            $uri .= '?'.$query;
257 257
         }
258 258
 
259 259
         if ('' !== $fragment) {
260
-            $uri .= '#' . $fragment;
260
+            $uri .= '#'.$fragment;
261 261
         }
262 262
 
263 263
         return $uri;
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
             throw new \InvalidArgumentException('Path must be a string');
292 292
         }
293 293
 
294
-        return \preg_replace_callback('/(?:[^' . self::CHAR_UNRESERVED . self::CHAR_SUB_DELIMS . '%:@\/]++|%(?![A-Fa-f0-9]{2}))/', [__CLASS__, 'rawurlencodeMatchZero'], $path);
294
+        return \preg_replace_callback('/(?:[^'.self::CHAR_UNRESERVED.self::CHAR_SUB_DELIMS.'%:@\/]++|%(?![A-Fa-f0-9]{2}))/', [__CLASS__, 'rawurlencodeMatchZero'], $path);
295 295
     }
296 296
 
297 297
     private function filterQueryAndFragment($str): string
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
             throw new \InvalidArgumentException('Query and fragment must be a string');
301 301
         }
302 302
 
303
-        return \preg_replace_callback('/(?:[^' . self::CHAR_UNRESERVED . self::CHAR_SUB_DELIMS . '%:@\/\?]++|%(?![A-Fa-f0-9]{2}))/', [__CLASS__, 'rawurlencodeMatchZero'], $str);
303
+        return \preg_replace_callback('/(?:[^'.self::CHAR_UNRESERVED.self::CHAR_SUB_DELIMS.'%:@\/\?]++|%(?![A-Fa-f0-9]{2}))/', [__CLASS__, 'rawurlencodeMatchZero'], $str);
304 304
     }
305 305
 
306 306
     private static function rawurlencodeMatchZero(array $match): string
Please login to merge, or discard this patch.