Passed
Push — master ( 5aad0c...e8042c )
by Joey
08:26
created
tests/unit/components/jobQueues/SynchronousTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
tests/unit/components/jobQueues/BeanstalkTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.