Completed
Push — master ( f011af...4c8274 )
by Eric
02:32
created
src/Email.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -347,12 +347,10 @@
 block discarded – undo
347 347
                 if(version_compare(\Swift::VERSION, 4, '<=') && version_compare(\Swift::VERSION, 3, '>='))
348 348
                 {
349 349
                     $mailer = new Email\Swift3($this->config);
350
-                }
351
-                else {
350
+                } else {
352 351
                     $mailer = new Email\Swift5($this->config);
353 352
                 }
354
-            }
355
-            else {
353
+            } else {
356 354
                 $mailer = new Email\Swift5($this->config); 
357 355
             }
358 356
             
Please login to merge, or discard this patch.
src/Email/Swift5.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@
 block discarded – undo
9 9
  */
10 10
 namespace JaegerApp\Email;
11 11
 
12
-use Swift_SmtpTransport;
13
-use Swift_MailTransport;
14
-use Swift_Message;
15 12
 use Swift_Attachment;
13
+use Swift_MailTransport;
16 14
 use Swift_Mailer;
17
-use Swift_Plugins_Loggers_ArrayLogger;
15
+use Swift_Message;
18 16
 use Swift_Plugins_LoggerPlugin;
17
+use Swift_Plugins_Loggers_ArrayLogger;
18
+use Swift_SmtpTransport;
19 19
 
20 20
 /**
21 21
  * Jaeger - Swift5 Email Abstraction
Please login to merge, or discard this patch.