Passed
Push — master ( d30061...fc2691 )
by Wanderson
03:39 queued 10s
created
www/app/models/PHPMailer/PHPMailer/PHPMailer.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3407,7 +3407,7 @@  discard block
 block discarded – undo
3407 3407
     {
3408 3408
         $this->RecipientsQueue = array_filter(
3409 3409
             $this->RecipientsQueue,
3410
-            function ($params) use ($kind) {
3410
+            function($params) use ($kind) {
3411 3411
                 return $params[0] != $kind;
3412 3412
             }
3413 3413
         );
@@ -4116,8 +4116,7 @@  discard block
 block discarded – undo
4116 4116
             return '';
4117 4117
         }
4118 4118
         $privKeyStr = !empty($this->DKIM_private_string) ?
4119
-            $this->DKIM_private_string :
4120
-            file_get_contents($this->DKIM_private);
4119
+            $this->DKIM_private_string : file_get_contents($this->DKIM_private);
4121 4120
         if ('' != $this->DKIM_passphrase) {
4122 4121
             $privKey = openssl_pkey_get_private($privKeyStr, $this->DKIM_passphrase);
4123 4122
         } else {
Please login to merge, or discard this patch.