Completed
Push — feature/supportCorrectVersions ( 11c1fb...161a46 )
by Stephen
03:13
created
src/MailTracking.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     protected function seeEmailBcc($bcc, Swift_Message $message = null)
112 112
     {
113 113
         $this->assertArrayHasKey($bcc, (array)$this->getEmail($message)
114
-                                                   ->getBcc(), "The last email sent was not bcc'ed to $bcc.");
114
+                                                    ->getBcc(), "The last email sent was not bcc'ed to $bcc.");
115 115
 
116 116
         return $this;
117 117
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     protected function seeEmailCc($cc, Swift_Message $message = null)
128 128
     {
129 129
         $this->assertArrayHasKey($cc, (array)$this->getEmail($message)
130
-                                                  ->getCc(), "The last email sent was not cc'ed to $cc.");
130
+                                                    ->getCc(), "The last email sent was not cc'ed to $cc.");
131 131
 
132 132
         return $this;
133 133
     }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     protected function seeEmailContains($excerpt, Swift_Message $message = null)
144 144
     {
145 145
         $this->assertContains($excerpt, $this->getEmail($message)
146
-                                             ->getBody(), "The last email sent did not contain the provided body.");
146
+                                                ->getBody(), "The last email sent did not contain the provided body.");
147 147
 
148 148
         return $this;
149 149
     }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     {
212 212
         // TODO: Allow from to be an array to check email & name
213 213
         $this->assertArrayHasKey($sender, (array)$this->getEmail($message)
214
-                                                      ->getFrom(), "The last email sent was not sent from $sender.");
214
+                                                        ->getFrom(), "The last email sent was not sent from $sender.");
215 215
 
216 216
         return $this;
217 217
     }
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     protected function seeEmailSubjectContains($excerpt, Swift_Message $message = null)
308 308
     {
309 309
         $this->assertContains($excerpt, $this->getEmail($message)
310
-                                             ->getSubject(),
310
+                                                ->getSubject(),
311 311
             "The last email sent did not contain the provided subject.");
312 312
 
313 313
         return $this;
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
     protected function seeEmailSubjectEquals($subject, Swift_Message $message = null)
342 342
     {
343 343
         $this->assertEquals($subject, $this->getEmail($message)
344
-                                           ->getSubject(),
344
+                                            ->getSubject(),
345 345
             "The last email sent did not contain a subject of $subject.");
346 346
 
347 347
         return $this;
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
     protected function seeEmailTo($recipient, Swift_Message $message = null)
359 359
     {
360 360
         $this->assertArrayHasKey($recipient, (array)$this->getEmail($message)
361
-                                                         ->getTo(), "The last email sent was not sent to $recipient.");
361
+                                                            ->getTo(), "The last email sent was not sent to $recipient.");
362 362
 
363 363
         return $this;
364 364
     }
Please login to merge, or discard this patch.