@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @param string $bcc |
93 | 93 | * @param Swift_Message|null $message |
94 | 94 | * |
95 | - * @return PHPUnit_Framework_TestCase $this |
|
95 | + * @return MailTracking $this |
|
96 | 96 | */ |
97 | 97 | protected function seeEmailBcc($bcc, Swift_Message $message = null) |
98 | 98 | { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * @param string $cc |
109 | 109 | * @param Swift_Message|null $message |
110 | 110 | * |
111 | - * @return PHPUnit_Framework_TestCase $this |
|
111 | + * @return MailTracking $this |
|
112 | 112 | */ |
113 | 113 | protected function seeEmailCc($cc, Swift_Message $message = null) |
114 | 114 | { |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * @param string $excerpt |
125 | 125 | * @param Swift_Message|null $message |
126 | 126 | * |
127 | - * @return PHPUnit_Framework_TestCase $this |
|
127 | + * @return MailTracking $this |
|
128 | 128 | */ |
129 | 129 | protected function seeEmailContains($excerpt, Swift_Message $message = null) |
130 | 130 | { |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @param string $excerpt |
141 | 141 | * @param Swift_Message|null $message |
142 | 142 | * |
143 | - * @return PHPUnit_Framework_TestCase $this |
|
143 | + * @return MailTracking $this |
|
144 | 144 | */ |
145 | 145 | protected function seeEmailDoesNotContain($excerpt, Swift_Message $message = null) |
146 | 146 | { |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @param string $body |
158 | 158 | * @param Swift_Message|null $message |
159 | 159 | * |
160 | - * @return PHPUnit_Framework_TestCase $this |
|
160 | + * @return MailTracking $this |
|
161 | 161 | */ |
162 | 162 | protected function seeEmailEquals($body, Swift_Message $message = null) |
163 | 163 | { |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | * @param string $sender |
174 | 174 | * @param Swift_Message|null $message |
175 | 175 | * |
176 | - * @return PHPUnit_Framework_TestCase $this |
|
176 | + * @return MailTracking $this |
|
177 | 177 | */ |
178 | 178 | protected function seeEmailFrom($sender, Swift_Message $message = null) |
179 | 179 | { |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | * @param string $reply_to |
191 | 191 | * @param Swift_Message|null $message |
192 | 192 | * |
193 | - * @return PHPUnit_Framework_TestCase $this |
|
193 | + * @return MailTracking $this |
|
194 | 194 | */ |
195 | 195 | protected function seeEmailReplyTo($reply_to, Swift_Message $message = null) |
196 | 196 | { |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | * |
207 | 207 | * @param integer $count |
208 | 208 | * |
209 | - * @return PHPUnit_Framework_TestCase $this |
|
209 | + * @return MailTracking $this |
|
210 | 210 | */ |
211 | 211 | protected function seeEmailsSent($count) |
212 | 212 | { |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | * @param string $subject |
224 | 224 | * @param Swift_Message|null $message |
225 | 225 | * |
226 | - * @return PHPUnit_Framework_TestCase $this |
|
226 | + * @return MailTracking $this |
|
227 | 227 | * @deprecated in favor of seeEmailSubjectEquals |
228 | 228 | */ |
229 | 229 | protected function seeEmailSubject($subject, Swift_Message $message = null) |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * @param string $excerpt |
238 | 238 | * @param Swift_Message|null $message |
239 | 239 | * |
240 | - * @return PHPUnit_Framework_TestCase $this |
|
240 | + * @return MailTracking $this |
|
241 | 241 | */ |
242 | 242 | protected function seeEmailSubjectContains($excerpt, Swift_Message $message = null) |
243 | 243 | { |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | * @param string $excerpt |
255 | 255 | * @param Swift_Message|null $message |
256 | 256 | * |
257 | - * @return PHPUnit_Framework_TestCase $this |
|
257 | + * @return MailTracking $this |
|
258 | 258 | */ |
259 | 259 | protected function seeEmailSubjectDoesNotContain($excerpt, Swift_Message $message = null) |
260 | 260 | { |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | * @param string $subject |
272 | 272 | * @param Swift_Message|null $message |
273 | 273 | * |
274 | - * @return PHPUnit_Framework_TestCase $this |
|
274 | + * @return MailTracking $this |
|
275 | 275 | */ |
276 | 276 | protected function seeEmailSubjectEquals($subject, Swift_Message $message = null) |
277 | 277 | { |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | * @param string $recipient |
289 | 289 | * @param Swift_Message|null $message |
290 | 290 | * |
291 | - * @return PHPUnit_Framework_TestCase $this |
|
291 | + * @return MailTracking $this |
|
292 | 292 | */ |
293 | 293 | protected function seeEmailTo($recipient, Swift_Message $message = null) |
294 | 294 | { |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | /** |
302 | 302 | * Assert that no emails were sent. |
303 | 303 | * |
304 | - * @return PHPUnit_Framework_TestCase $this |
|
304 | + * @return MailTracking $this |
|
305 | 305 | */ |
306 | 306 | protected function seeEmailWasNotSent() |
307 | 307 | { |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | /** |
316 | 316 | * Assert that at least one email was sent. |
317 | 317 | * |
318 | - * @return PHPUnit_Framework_TestCase $this |
|
318 | + * @return MailTracking $this |
|
319 | 319 | */ |
320 | 320 | protected function seeEmailWasSent() |
321 | 321 | { |