@@ -49,7 +49,7 @@ |
||
49 | 49 | /** |
50 | 50 | * Getter method for the e-mail. |
51 | 51 | * |
52 | - * @return string|boolean Returns the e-mail from the setter method, if mail is not valid false is returned. |
|
52 | + * @return string|false Returns the e-mail from the setter method, if mail is not valid false is returned. |
|
53 | 53 | */ |
54 | 54 | public function getEmail() |
55 | 55 | { |
@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function getHref() |
63 | 63 | { |
64 | - return empty($this->getEmail()) ? null : 'mailto:' . $this->getEmail(); |
|
64 | + return empty($this->getEmail()) ? null : 'mailto:'.$this->getEmail(); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |