@@ -58,7 +58,6 @@ |
||
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 |
@@ -91,7 +91,7 @@ |
||
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()) |
@@ -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 | } |