Completed
Pull Request — develop (#39)
by
unknown
01:24
created
src/MailTracking.php 2 patches
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
     }
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
     protected function seeEmailSubjectContains($excerpt, Swift_Message $message = null)
243 243
     {
244 244
         $this->assertContains($excerpt, $this->getEmail($message)
245
-                                             ->getSubject(),
246
-                              "The last email sent did not contain the provided subject.");
245
+                                                ->getSubject(),
246
+                                "The last email sent did not contain the provided subject.");
247 247
 
248 248
         return $this;
249 249
     }
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     {
261 261
         $this->assertNotContains($excerpt, $this->getEmail($message)
262 262
                                                 ->getSubject(),
263
-                                 "The last email sent contained the provided text in its subject.");
263
+                                    "The last email sent contained the provided text in its subject.");
264 264
 
265 265
         return $this;
266 266
     }
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
     protected function seeEmailSubjectEquals($subject, Swift_Message $message = null)
277 277
     {
278 278
         $this->assertEquals($subject, $this->getEmail($message)
279
-                                           ->getSubject(),
279
+                                            ->getSubject(),
280 280
                             "The last email sent did not contain a subject of $subject.");
281 281
 
282 282
         return $this;
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     protected function seeEmailTo($recipient, Swift_Message $message = null)
294 294
     {
295 295
         $this->assertArrayHasKey($recipient, (array)$this->getEmail($message)
296
-                                                         ->getTo(), "The last email sent was not sent to $recipient.");
296
+                                                            ->getTo(), "The last email sent was not sent to $recipient.");
297 297
 
298 298
         return $this;
299 299
     }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function setUpMailTracking()
50 50
     {
51
-        $this->afterApplicationCreated(function () {
51
+        $this->afterApplicationCreated(function() {
52 52
             Mail::getSwiftMailer()
53 53
             ->registerPlugin(new MailRecorder($this));
54 54
         });
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     protected function seeEmailBcc($bcc, Swift_Message $message = null)
100 100
     {
101
-        $this->assertArrayHasKey($bcc, (array)$this->getEmail($message)
101
+        $this->assertArrayHasKey($bcc, (array) $this->getEmail($message)
102 102
                                                    ->getBcc(), "The last email sent was not bcc'ed to $bcc.");
103 103
 
104 104
         return $this;
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     protected function seeEmailCc($cc, Swift_Message $message = null)
116 116
     {
117
-        $this->assertArrayHasKey($cc, (array)$this->getEmail($message)
117
+        $this->assertArrayHasKey($cc, (array) $this->getEmail($message)
118 118
                                                   ->getCc(), "The last email sent was not cc'ed to $cc.");
119 119
 
120 120
         return $this;
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     protected function seeEmailFrom($sender, Swift_Message $message = null)
199 199
     {
200 200
         // TODO: Allow from to be an array to check email & name
201
-        $this->assertArrayHasKey($sender, (array)$this->getEmail($message)
201
+        $this->assertArrayHasKey($sender, (array) $this->getEmail($message)
202 202
                                                       ->getFrom(), "The last email sent was not sent from $sender.");
203 203
 
204 204
         return $this;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     protected function seeEmailReplyTo($reply_to, Swift_Message $message = null)
236 236
     {
237
-        $this->assertArrayHasKey($reply_to, (array)$this->getEmail($message)
237
+        $this->assertArrayHasKey($reply_to, (array) $this->getEmail($message)
238 238
                                                         ->getReplyTo(),
239 239
                                  "The last email sent was not set to reply to $reply_to.");
240 240
 
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
      */
346 346
     protected function seeEmailTo($recipient, Swift_Message $message = null)
347 347
     {
348
-        $this->assertArrayHasKey($recipient, (array)$this->getEmail($message)
348
+        $this->assertArrayHasKey($recipient, (array) $this->getEmail($message)
349 349
                                                          ->getTo(), "The last email sent was not sent to $recipient.");
350 350
 
351 351
         return $this;
Please login to merge, or discard this patch.