Completed
Branch master (a49d14)
by Jacob
02:16
created
Archangel.class.php 1 patch
Doc Comments   +13 added lines, -10 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @param	string	$address	email address for the recipient
62 62
 	 * @param	string	$title		name of the recipient (optional)
63
-	 * @return	object	instantiated $this
63
+	 * @return	Archangel	instantiated $this
64 64
 	 */
65 65
 	public function addTo($address, $title = '')
66 66
 	{
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @param	string	$address	email address for the cc recipient
77 77
 	 * @param	string	$title		name of the cc recipient (optional)
78
-	 * @return	object	instantiated $this
78
+	 * @return	Archangel	instantiated $this
79 79
 	 */
80 80
 	public function addCC($address, $title = '')
81 81
 	{
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 *
91 91
 	 * @param	string	$address	email address for the bcc recipient
92 92
 	 * @param	string	$title		name of the bcc recipient (optional)
93
-	 * @return	object	instantiated $this
93
+	 * @return	Archangel	instantiated $this
94 94
 	 */
95 95
 	public function addBCC($address, $title = '')
96 96
 	{
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 *
106 106
 	 * @param	string	$address	email address for the sender
107 107
 	 * @param	string	$title		name of the sender (optional)
108
-	 * @return	object	instantiated $this
108
+	 * @return	Archangel	instantiated $this
109 109
 	 */
110 110
 	public function setFrom($address, $title = '')
111 111
 	{
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 *
121 121
 	 * @param	string	$address	email address for the reply-to
122 122
 	 * @param	string	$title		name of the reply-to (optional)
123
-	 * @return	object	instantiated $this
123
+	 * @return	Archangel	instantiated $this
124 124
 	 */
125 125
 	public function setReplyTo($address, $title = '')
126 126
 	{
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 * Setter method for setting a subject
135 135
 	 *
136 136
 	 * @param	string	$subject	subject for the email
137
-	 * @return	object	instantiated $this
137
+	 * @return	Archangel	instantiated $this
138 138
 	 */
139 139
 	public function setSubject($subject)
140 140
 	{
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 * Setter method for the plain text message
149 149
 	 *
150 150
 	 * @param	string	$message	the plain-text message
151
-	 * @return	object	insantiated $this
151
+	 * @return	Archangel	insantiated $this
152 152
 	 */
153 153
 	public function setPlainMessage($message)
154 154
 	{
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 * Setter method for the html message
162 162
 	 *
163 163
 	 * @param	string	$message	the html message
164
-	 * @return	object	insantiated $this
164
+	 * @return	Archangel	insantiated $this
165 165
 	 */
166 166
 	public function setHTMLMessage($message)
167 167
 	{
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	 * @param	string	$path	the full path of the attachment
177 177
 	 * @param	string	$type	mime type of the file
178 178
 	 * @param	string	$title	the title of the attachment (optional)
179
-	 * @return	object	insantiated $this
179
+	 * @return	Archangel	insantiated $this
180 180
 	 */
181 181
 	public function addAttachment($path, $type, $title = '')
182 182
 	{
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 	/**
215 215
 	 * Main instantiator for the class
216 216
 	 *
217
-	 * @return	object	instantiated $this
217
+	 * @return	Archangel	instantiated $this
218 218
 	 */
219 219
 	public static function instance()
220 220
 	{
@@ -400,6 +400,7 @@  discard block
 block discarded – undo
400 400
 
401 401
 	/**
402 402
 	 * stub for email address checking
403
+	 * @param string $string
403 404
 	 */
404 405
 	private function is_valid_email_address($string)
405 406
 	{
@@ -411,6 +412,7 @@  discard block
 block discarded – undo
411 412
 
412 413
 	/**
413 414
 	 * stub for email title checking
415
+	 * @param string $string
414 416
 	 */
415 417
 	private function is_valid_email_title($string)
416 418
 	{
@@ -419,6 +421,7 @@  discard block
 block discarded – undo
419 421
 
420 422
 	/**
421 423
 	 * stub for subject checking
424
+	 * @param string $string
422 425
 	 */
423 426
 	private function is_valid_subject($string)
424 427
 	{
Please login to merge, or discard this patch.