@@ -15,7 +15,7 @@ |
||
15 | 15 | { |
16 | 16 | $commandBus = $this->createMock(CommandBus::class); |
17 | 17 | $counter = 0; |
18 | - $beforePut = static function (JobInterface $job) use (&$counter) { |
|
18 | + $beforePut = static function(JobInterface $job) use (&$counter) { |
|
19 | 19 | $counter++; |
20 | 20 | }; |
21 | 21 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | $connection = $this->createMock(Connection::class); |
20 | 20 | $jobFactory = $this->createMock(JobFactory::class); |
21 | 21 | $counter = 0; |
22 | - $beforePut = static function (JobInterface $job) use (&$counter) { |
|
22 | + $beforePut = static function(JobInterface $job) use (&$counter) { |
|
23 | 23 | $counter++; |
24 | 24 | }; |
25 | 25 |