@@ -82,6 +82,7 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * Wait for $seconds before continuing |
84 | 84 | * @param int The number of seconds to wait |
85 | + * @param double $secs |
|
85 | 86 | */ |
86 | 87 | public function wait($secs) |
87 | 88 | { |
@@ -106,6 +107,7 @@ discard block |
||
106 | 107 | /** |
107 | 108 | * Set the number of emails sent |
108 | 109 | * @param int Emails sent so far |
110 | + * @param integer $num |
|
109 | 111 | */ |
110 | 112 | public function setSent($num) |
111 | 113 | { |
@@ -21,6 +21,7 @@ |
||
21 | 21 | * Paint the result of a send operation |
22 | 22 | * @param string The email address that was tried |
23 | 23 | * @param boolean True if the message was successfully sent |
24 | + * @param boolean $result |
|
24 | 25 | */ |
25 | 26 | abstract public function paintResult($address, $result); |
26 | 27 | } |
@@ -95,6 +95,7 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * Get an iterator object for all the recipients in the given field. |
97 | 97 | * @param string The field name (to, cc or bcc) |
98 | + * @param string $where |
|
98 | 99 | * @return Swift_Iterator |
99 | 100 | */ |
100 | 101 | public function getIterator($where) |
@@ -124,6 +125,7 @@ discard block |
||
124 | 125 | * Add a To: recipient |
125 | 126 | * @param mixed The address to add. Can be a string or Swift_Address |
126 | 127 | * @param string The personal name, optional |
128 | + * @param Swift_Address $address |
|
127 | 129 | */ |
128 | 130 | public function addTo($address, $name=null) |
129 | 131 | { |