| @@ -64,9 +64,9 @@ | ||
| 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(); | 
| @@ -237,7 +237,7 @@ | ||
| 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 | } | 
| @@ -89,9 +89,9 @@ | ||
| 89 | 89 | |
| 90 | 90 | |
| 91 | 91 | |
| 92 | - $lastSandedEmail = $this->getEmailSendReceiveColl()->count()-1 >=0 ? | |
| 92 | + $lastSandedEmail = $this->getEmailSendReceiveColl()->count() - 1 >= 0 ? | |
| 93 | 93 | $this->getEmailSendReceiveColl()->at( | 
| 94 | - $this->getEmailSendReceiveColl()->count()-1 | |
| 94 | + $this->getEmailSendReceiveColl()->count() - 1 | |
| 95 | 95 | ) | 
| 96 | 96 | :null; | 
| 97 | 97 | if (null === $lastSandedEmail |