Passed
Branch master (87754e)
by Dmitry
02:24
created
src/Email/SendReceiveCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,9 +64,9 @@
 block discarded – undo
64 64
         $resultSend = $this->emailCheck($this->getEmailSendCheck(), self::EMAIL_SEND_CHECK_MSG);
65 65
         $resultReceive = $this->emailCheck($this->getEmailReceiveCheck(), self::EMAIL_RECEIVE_CHECK_MSG);
66 66
 
67
-        if (! $resultSend->isOk()) {
67
+        if (!$resultSend->isOk()) {
68 68
             $result = new Failure($resultSend->getError());
69
-        } elseif (! $resultReceive->isOk()) {
69
+        } elseif (!$resultReceive->isOk()) {
70 70
             $result = new Failure($resultReceive->getError());
71 71
         } else {
72 72
             $result = new Success();
Please login to merge, or discard this patch.
src/Email/Send/EmailSendCheck.php 1 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.