@@ -11,5 +11,5 @@ |
||
11 | 11 | |
12 | 12 | const FAIL = 'processed.event.fail'; |
13 | 13 | |
14 | - const FINISH = 'processed.event.finish'; |
|
14 | + const FINISH = 'processed.event.finish'; |
|
15 | 15 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $configuration = new Configuration(); |
23 | 23 | $config = $this->processConfiguration($configuration, $configs); |
24 | 24 | |
25 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
25 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
26 | 26 | $loader->load('services.yml'); |
27 | 27 | |
28 | 28 | $this->loadEventNames($container, $config); |
@@ -170,7 +170,7 @@ |
||
170 | 170 | * @param array $fieldGroupIdentifierList |
171 | 171 | * @param int $maxConcurrentJobsCount |
172 | 172 | * |
173 | - * @return bool |
|
173 | + * @return integer |
|
174 | 174 | */ |
175 | 175 | private function calculateAvailableSlotsCount($lockNames, $fieldGroupIdentifierList, $maxConcurrentJobsCount) |
176 | 176 | { |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Itkg\DelayEventBundle\Command; |
4 | 4 | |
5 | 5 | use Itkg\DelayEventBundle\Handler\LockHandlerInterface; |
6 | -use Itkg\DelayEventBundle\Model\Event; |
|
7 | 6 | use Itkg\DelayEventBundle\Model\Lock; |
8 | 7 | use Itkg\DelayEventBundle\Processor\EventProcessor; |
9 | 8 | use Itkg\DelayEventBundle\Repository\EventRepository; |
@@ -186,7 +186,7 @@ |
||
186 | 186 | */ |
187 | 187 | private function calculateAvailableSlotsCount($lockNames, $fieldGroupIdentifierList, $maxConcurrentJobsCount) |
188 | 188 | { |
189 | - $concurrentJobsCount = count(array_intersect($fieldGroupIdentifierList , $lockNames)); |
|
189 | + $concurrentJobsCount = count(array_intersect($fieldGroupIdentifierList, $lockNames)); |
|
190 | 190 | |
191 | 191 | return $maxConcurrentJobsCount - $concurrentJobsCount; |
192 | 192 | } |
@@ -38,7 +38,6 @@ |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param \Swift_Mailer $mailer |
41 | - * @param TranslatorInterface $translator |
|
42 | 41 | * @param EngineInterface $templating |
43 | 42 | * @param string $from |
44 | 43 | * @param string $to |
@@ -57,12 +57,12 @@ |
||
57 | 57 | $subject, |
58 | 58 | $template |
59 | 59 | ){ |
60 | - $this->mailer = $mailer; |
|
61 | - $this->templating = $templating; |
|
62 | - $this->from = $from; |
|
63 | - $this->to = $to; |
|
64 | - $this->subject = $subject; |
|
65 | - $this->template = $template; |
|
60 | + $this->mailer = $mailer; |
|
61 | + $this->templating = $templating; |
|
62 | + $this->from = $from; |
|
63 | + $this->to = $to; |
|
64 | + $this->subject = $subject; |
|
65 | + $this->template = $template; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -56,7 +56,7 @@ |
||
56 | 56 | $to, |
57 | 57 | $subject, |
58 | 58 | $template |
59 | - ){ |
|
59 | + ) { |
|
60 | 60 | $this->mailer = $mailer; |
61 | 61 | $this->templating = $templating; |
62 | 62 | $this->from = $from; |
@@ -110,7 +110,7 @@ |
||
110 | 110 | } |
111 | 111 | |
112 | 112 | $dateWithMaxTime = $lock->getLockedAt(); |
113 | - $dateWithMaxTime->add(new DateInterval('PT' . $this->timeLimit . 'S')); |
|
113 | + $dateWithMaxTime->add(new DateInterval('PT'.$this->timeLimit.'S')); |
|
114 | 114 | if (new \DateTime() > ($dateWithMaxTime)) { |
115 | 115 | $this->notifier->process($this->channelName); |
116 | 116 | } |
@@ -127,7 +127,7 @@ |
||
127 | 127 | */ |
128 | 128 | public function increaseTryCount() |
129 | 129 | { |
130 | - $this->tryCount ++; |
|
130 | + $this->tryCount++; |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |