Completed
Push — master ( 527d45...ffab82 )
by Joao
23s queued 10s
created
src/Uri.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function getUserInfo()
38 38
     {
39 39
         return $this->username
40
-            . (!empty($this->password) ? ':' . rawurlencode($this->password) : '' );
40
+            . (!empty($this->password) ? ':' . rawurlencode($this->password) : '');
41 41
     }
42 42
 
43 43
     /**
@@ -234,6 +234,6 @@  discard block
 block discarded – undo
234 234
 
235 235
     public static function getInstanceFromUri(UriInterface $uri)
236 236
     {
237
-        return self::getInstanceFromString((string)$uri);
237
+        return self::getInstanceFromString((string) $uri);
238 238
     }
239 239
 }
Please login to merge, or discard this patch.