@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param string $address email address for the recipient |
| 80 | 80 | * @param string $title name of the recipient (optional) |
| 81 | 81 | |
| 82 | - * @return object instantiated $this |
|
| 82 | + * @return Archangel instantiated $this |
|
| 83 | 83 | */ |
| 84 | 84 | public function addTo($address, $title = '') |
| 85 | 85 | { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * @param string $address email address for the cc recipient |
| 98 | 98 | * @param string $title name of the cc recipient (optional) |
| 99 | 99 | * |
| 100 | - * @return object instantiated $this |
|
| 100 | + * @return Archangel instantiated $this |
|
| 101 | 101 | */ |
| 102 | 102 | public function addCC($address, $title = '') |
| 103 | 103 | { |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | * @param string $address email address for the bcc recipient |
| 120 | 120 | * @param string $title name of the bcc recipient (optional) |
| 121 | 121 | * |
| 122 | - * @return object instantiated $this |
|
| 122 | + * @return Archangel instantiated $this |
|
| 123 | 123 | */ |
| 124 | 124 | public function addBCC($address, $title = '') |
| 125 | 125 | { |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * @param string $address email address for the sender |
| 142 | 142 | * @param string $title name of the sender (optional) |
| 143 | 143 | * |
| 144 | - * @return object instantiated $this |
|
| 144 | + * @return Archangel instantiated $this |
|
| 145 | 145 | */ |
| 146 | 146 | public function setFrom($address, $title = '') |
| 147 | 147 | { |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | * @param string $address email address for the reply-to |
| 157 | 157 | * @param string $title name of the reply-to (optional) |
| 158 | 158 | * |
| 159 | - * @return object instantiated $this |
|
| 159 | + * @return Archangel instantiated $this |
|
| 160 | 160 | */ |
| 161 | 161 | public function setReplyTo($address, $title = '') |
| 162 | 162 | { |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * |
| 185 | 185 | * @param string $subject subject for the email |
| 186 | 186 | * |
| 187 | - * @return object instantiated $this |
|
| 187 | + * @return Archangel instantiated $this |
|
| 188 | 188 | */ |
| 189 | 189 | public function setSubject($subject) |
| 190 | 190 | { |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * |
| 199 | 199 | * @param string $message the plain-text message |
| 200 | 200 | * |
| 201 | - * @return object instantiated $this |
|
| 201 | + * @return Archangel instantiated $this |
|
| 202 | 202 | */ |
| 203 | 203 | public function setPlainMessage($message) |
| 204 | 204 | { |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | * |
| 213 | 213 | * @param string $message the html message |
| 214 | 214 | * |
| 215 | - * @return object instantiated $this |
|
| 215 | + * @return Archangel instantiated $this |
|
| 216 | 216 | */ |
| 217 | 217 | public function setHTMLMessage($message) |
| 218 | 218 | { |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | * @param string $type mime type of the file |
| 229 | 229 | * @param string $title the title of the attachment (optional) |
| 230 | 230 | * |
| 231 | - * @return object instantiated $this |
|
| 231 | + * @return Archangel instantiated $this |
|
| 232 | 232 | */ |
| 233 | 233 | public function addAttachment($path, $type, $title = '') |
| 234 | 234 | { |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | /** |
| 375 | 375 | * Shared holder for the plain message header |
| 376 | 376 | * |
| 377 | - * @return array |
|
| 377 | + * @return string[] |
|
| 378 | 378 | */ |
| 379 | 379 | protected function getPlainMessageHeader() |
| 380 | 380 | { |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | /** |
| 389 | 389 | * Shared holder for the html message header |
| 390 | 390 | * |
| 391 | - * @return array |
|
| 391 | + * @return string[] |
|
| 392 | 392 | */ |
| 393 | 393 | protected function getHtmlMessageHeader() |
| 394 | 394 | { |