Completed
Branch master (d8ced3)
by Joao
02:16
created
src/Uri.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return mixed
46
+     * @return string
47 47
      */
48 48
     public function getUsername()
49 49
     {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @return mixed
54
+     * @return null|string
55 55
      */
56 56
     public function getPassword()
57 57
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function getUserInfo()
40 40
     {
41 41
         return $this->username
42
-            . (!empty($this->password) ? ':' . $this->password : '' );
42
+            . (!empty($this->password) ? ':' . $this->password : '');
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.