Completed
Push — master ( 3de523...b5a3c1 )
by Marc
02:19
created
core/components/Mail.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 $this->_mailer->isSMTP();
145 145
                 $this->_mailer->SMTPSecure = $this->smtpSecure;
146 146
                 $this->_mailer->Host = $this->host;
147
-                $this->_mailer->SMTPAuth= $this->smtpAuth;
147
+                $this->_mailer->SMTPAuth = $this->smtpAuth;
148 148
                 $this->_mailer->Username = $this->username;
149 149
                 $this->_mailer->Password = $this->password;
150 150
                 $this->_mailer->Port = $this->port;
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
                         return true;
483 483
                     } else {
484 484
                         $data = [$this->host, $this->port, $this->smtpSecure, $this->username];
485
-                        throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply() . PHP_EOL . print_r($smtp->getError(), true));
485
+                        throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply().PHP_EOL.print_r($smtp->getError(), true));
486 486
                     }
487 487
                 } else {
488 488
                     throw new Exception('HELO failed: '.$smtp->getLastReply());
Please login to merge, or discard this patch.