Passed
Pull Request — master (#578)
by butschster
07:38
created
src/Queue/tests/Driver/NullDriverTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function testJobCallableShouldBePushed(): void
35 35
     {
36
-        $callback = function () {
36
+        $callback = function (){
37 37
             return 'bar';
38 38
         };
39 39
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
 
34 34
     public function testJobCallableShouldBePushed(): void
35 35
     {
36
-        $callback = function () {
36
+        $callback = function ()
37
+        {
37 38
             return 'bar';
38 39
         };
39 40
 
Please login to merge, or discard this patch.
src/Queue/src/Driver/NullDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
     {
18 18
         // Do nothing
19 19
 
20
-        return (string) Uuid::uuid4();
20
+        return (string)Uuid::uuid4();
21 21
     }
22 22
 }
Please login to merge, or discard this patch.