@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | * @param string $address email address for the recipient |
| 73 | 73 | * @param string $title name of the recipient (optional) |
| 74 | 74 | |
| 75 | - * @return object instantiated $this |
|
| 75 | + * @return Archangel instantiated $this |
|
| 76 | 76 | */ |
| 77 | 77 | public function addTo($address, $title = '') |
| 78 | 78 | { |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * @param string $address email address for the cc recipient |
| 91 | 91 | * @param string $title name of the cc recipient (optional) |
| 92 | 92 | * |
| 93 | - * @return object instantiated $this |
|
| 93 | + * @return Archangel instantiated $this |
|
| 94 | 94 | */ |
| 95 | 95 | public function addCC($address, $title = '') |
| 96 | 96 | { |
@@ -105,10 +105,10 @@ discard block |
||
| 105 | 105 | /** |
| 106 | 106 | * Setter method for adding bcc recipients |
| 107 | 107 | * |
| 108 | - * @param string $addres email address for the bcc recipient |
|
| 108 | + * @param string $address email address for the bcc recipient |
|
| 109 | 109 | * @param string $title name of the bcc recipient (optional) |
| 110 | 110 | * |
| 111 | - * @return object instantiated $this |
|
| 111 | + * @return Archangel instantiated $this |
|
| 112 | 112 | */ |
| 113 | 113 | public function addBCC($address, $title = '') |
| 114 | 114 | { |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @param string $address email address for the sender |
| 127 | 127 | * @param string $title name of the sender (optional) |
| 128 | 128 | * |
| 129 | - * @return object instantiated $this |
|
| 129 | + * @return Archangel instantiated $this |
|
| 130 | 130 | */ |
| 131 | 131 | public function setFrom($address, $title = '') |
| 132 | 132 | { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * @param string $address email address for the reply-to |
| 145 | 145 | * @param string $title name of the reply-to (optional) |
| 146 | 146 | * |
| 147 | - * @return object instantiated $this |
|
| 147 | + * @return Archangel instantiated $this |
|
| 148 | 148 | */ |
| 149 | 149 | public function setReplyTo($address, $title = '') |
| 150 | 150 | { |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * |
| 162 | 162 | * @param string $subject subject for the email |
| 163 | 163 | * |
| 164 | - * @return object instantiated $this |
|
| 164 | + * @return Archangel instantiated $this |
|
| 165 | 165 | */ |
| 166 | 166 | public function setSubject($subject) |
| 167 | 167 | { |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | * |
| 176 | 176 | * @param string $message the plain-text message |
| 177 | 177 | * |
| 178 | - * @return object instantiated $this |
|
| 178 | + * @return Archangel instantiated $this |
|
| 179 | 179 | */ |
| 180 | 180 | public function setPlainMessage($message) |
| 181 | 181 | { |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | * |
| 190 | 190 | * @param string $message the html message |
| 191 | 191 | * |
| 192 | - * @return object instantiated $this |
|
| 192 | + * @return Archangel instantiated $this |
|
| 193 | 193 | */ |
| 194 | 194 | public function setHTMLMessage($message) |
| 195 | 195 | { |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | * @param string $type mime type of the file |
| 206 | 206 | * @param string $title the title of the attachment (optional) |
| 207 | 207 | * |
| 208 | - * @return object instantiated $this |
|
| 208 | + * @return Archangel instantiated $this |
|
| 209 | 209 | */ |
| 210 | 210 | public function addAttachment($path, $type, $title = '') |
| 211 | 211 | { |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | /** |
| 245 | 245 | * Main instantiator for the class |
| 246 | 246 | * |
| 247 | - * @return object instantiated $this |
|
| 247 | + * @return Archangel instantiated $this |
|
| 248 | 248 | */ |
| 249 | 249 | public static function instance() |
| 250 | 250 | { |