Completed
Push — master ( 1aa097...88444f )
by Jimmy
02:15
created
src/MailTracking.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     protected function seeEmailBcc($bcc, Swift_Message $message = null)
98 98
     {
99
-        $this->assertArrayHasKey($bcc, (array)$this->getEmail($message)
99
+        $this->assertArrayHasKey($bcc, (array) $this->getEmail($message)
100 100
                                                    ->getBcc(), "No email was bcc'ed to $bcc.");
101 101
 
102 102
         return $this;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     protected function seeEmailCc($cc, Swift_Message $message = null)
114 114
     {
115
-        $this->assertArrayHasKey($cc, (array)$this->getEmail($message)
115
+        $this->assertArrayHasKey($cc, (array) $this->getEmail($message)
116 116
                                                   ->getCc(), "No email was cc'ed to $cc.");
117 117
 
118 118
         return $this;
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     protected function seeEmailFrom($sender, Swift_Message $message = null)
178 178
     {
179 179
         // TODO: Allow from to be an array to check email & name
180
-        $this->assertArrayHasKey($sender, (array)$this->getEmail($message)
180
+        $this->assertArrayHasKey($sender, (array) $this->getEmail($message)
181 181
                                                       ->getFrom(), "No email was sent from $sender.");
182 182
 
183 183
         return $this;
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     protected function seeEmailReplyTo($reply_to, Swift_Message $message = null)
195 195
     {
196
-        $this->assertArrayHasKey($reply_to, (array)$this->getEmail($message)
196
+        $this->assertArrayHasKey($reply_to, (array) $this->getEmail($message)
197 197
                                                         ->getReplyTo(), "No email was set to reply to $reply_to.");
198 198
 
199 199
         return $this;
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
      */
243 243
     protected function seeEmailTo($recipient, Swift_Message $message = null)
244 244
     {
245
-        $this->assertArrayHasKey($recipient, (array)$this->getEmail($message)
245
+        $this->assertArrayHasKey($recipient, (array) $this->getEmail($message)
246 246
                                                          ->getTo(), "No email was sent to $recipient.");
247 247
 
248 248
         return $this;
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     protected function seeEmailBcc($bcc, Swift_Message $message = null)
98 98
     {
99 99
         $this->assertArrayHasKey($bcc, (array)$this->getEmail($message)
100
-                                                   ->getBcc(), "The last email sent was not bcc'ed to $bcc.");
100
+                                                    ->getBcc(), "The last email sent was not bcc'ed to $bcc.");
101 101
 
102 102
         return $this;
103 103
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     protected function seeEmailCc($cc, Swift_Message $message = null)
114 114
     {
115 115
         $this->assertArrayHasKey($cc, (array)$this->getEmail($message)
116
-                                                  ->getCc(), "The last email sent was not cc'ed to $cc.");
116
+                                                    ->getCc(), "The last email sent was not cc'ed to $cc.");
117 117
 
118 118
         return $this;
119 119
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     protected function seeEmailContains($excerpt, Swift_Message $message = null)
130 130
     {
131 131
         $this->assertContains($excerpt, $this->getEmail($message)
132
-                                             ->getBody(), "The last email sent did not contain the provided body.");
132
+                                                ->getBody(), "The last email sent did not contain the provided body.");
133 133
 
134 134
         return $this;
135 135
     }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     {
147 147
         $this->assertNotContains($excerpt, $this->getEmail($message)
148 148
                                                 ->getBody(),
149
-                                 "The last email sent contained the provided text in its body.");
149
+                                    "The last email sent contained the provided text in its body.");
150 150
 
151 151
         return $this;
152 152
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     {
180 180
         // TODO: Allow from to be an array to check email & name
181 181
         $this->assertArrayHasKey($sender, (array)$this->getEmail($message)
182
-                                                      ->getFrom(), "The last email sent was not sent from $sender.");
182
+                                                        ->getFrom(), "The last email sent was not sent from $sender.");
183 183
 
184 184
         return $this;
185 185
     }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
     {
197 197
         $this->assertArrayHasKey($reply_to, (array)$this->getEmail($message)
198 198
                                                         ->getReplyTo(),
199
-                                 "The last email sent was not set to reply to $reply_to.");
199
+                                    "The last email sent was not set to reply to $reply_to.");
200 200
 
201 201
         return $this;
202 202
     }
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     protected function seeEmailSubject($subject, Swift_Message $message = null)
229 229
     {
230 230
         $this->assertEquals($subject, $this->getEmail($message)
231
-                                           ->getSubject(),
231
+                                            ->getSubject(),
232 232
                             "The last email sent did not contain a subject of $subject.");
233 233
 
234 234
         return $this;
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
     protected function seeEmailSubjectContains($excerpt, Swift_Message $message = null)
246 246
     {
247 247
         $this->assertContains($excerpt, $this->getEmail($message)
248
-                                             ->getSubject(),
249
-                              "The last email sent did not contain the provided subject.");
248
+                                                ->getSubject(),
249
+                                "The last email sent did not contain the provided subject.");
250 250
 
251 251
         return $this;
252 252
     }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     {
264 264
         $this->assertNotContains($excerpt, $this->getEmail($message)
265 265
                                                 ->getSubject(),
266
-                                 "The last email sent contained the provided text in its subject.");
266
+                                    "The last email sent contained the provided text in its subject.");
267 267
 
268 268
         return $this;
269 269
     }
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     protected function seeEmailTo($recipient, Swift_Message $message = null)
280 280
     {
281 281
         $this->assertArrayHasKey($recipient, (array)$this->getEmail($message)
282
-                                                         ->getTo(), "The last email sent was not sent to $recipient.");
282
+                                                            ->getTo(), "The last email sent was not sent to $recipient.");
283 283
 
284 284
         return $this;
285 285
     }
Please login to merge, or discard this patch.