Passed
Push — master ( 95d545...35bca5 )
by Dmitry
04:09
created
src/Email/Send/EmailSendCheck.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,6 @@
 block discarded – undo
58 58
     /**
59 59
      * @param string        $checkNode
60 60
      * @param Swift_Mailer  $mailer
61
-     * @param EntityManager $doctrine
62 61
      * @param string        $from
63 62
      * @param string        $toSubjects
64 63
      * @param int           $sendInterval
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 
92 92
 
93 93
         $lastSandedEmail = $this->getEmailSendReceiveColl()->at(
94
-            $this->getEmailSendReceiveColl()->count()-1
94
+            $this->getEmailSendReceiveColl()->count() - 1
95 95
         );
96 96
         if (null === $lastSandedEmail
97 97
             || empty($lastSandedEmail->getSentAt())
Please login to merge, or discard this patch.
src/Email/Receive/EmailReceiveCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@
 block discarded – undo
237 237
      */
238 238
     private function findSameItemCallback(EmailSendReceive $emailSendCheckI)
239 239
     {
240
-        return function (EmailSendReceive $emailSendCheckItem) use ($emailSendCheckI) {
240
+        return function(EmailSendReceive $emailSendCheckItem) use ($emailSendCheckI) {
241 241
             return $emailSendCheckItem === $emailSendCheckI;
242 242
         };
243 243
     }
Please login to merge, or discard this patch.