@@ -43,7 +43,7 @@ discard block |
||
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 |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | - * @return mixed |
|
54 | + * @return null|string |
|
55 | 55 | */ |
56 | 56 | public function getPassword() |
57 | 57 | { |
@@ -39,7 +39,7 @@ |
||
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 | /** |