Completed
Push — master ( 63e97e...33e149 )
by Wachter
07:47
created
tests/Unit/DependencyInjection/HandlerCompilerPassTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $definition->addMethodCall(
37 37
             HandlerCompilerPass::ADD_FUNCTION_NAME,
38 38
             Argument::that(
39
-                function ($arguments) {
39
+                function($arguments) {
40 40
                     return $arguments[0] === 'name-1' && $arguments[1]->__toString() === 'id-1';
41 41
                 }
42 42
             )
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $definition->addMethodCall(
45 45
             HandlerCompilerPass::ADD_FUNCTION_NAME,
46 46
             Argument::that(
47
-                function ($arguments) {
47
+                function($arguments) {
48 48
                     return $arguments[0] === 'name-2-1' && $arguments[1]->__toString() === 'id-2';
49 49
                 }
50 50
             )
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $definition->addMethodCall(
53 53
             HandlerCompilerPass::ADD_FUNCTION_NAME,
54 54
             Argument::that(
55
-                function ($arguments) {
55
+                function($arguments) {
56 56
                     return $arguments[0] === 'name-2-2' && $arguments[1]->__toString() === 'id-2';
57 57
                 }
58 58
             )
Please login to merge, or discard this patch.
tests/Functional/SchedulerTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Functional;
4 4
 
5 5
 use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
6
-use Symfony\Component\HttpFoundation\Request;
7
-use Symfony\Component\HttpFoundation\Response;
8 6
 use Task\SchedulerInterface;
9 7
 use Task\Storage\StorageInterface;
10 8
 use Task\Task;
Please login to merge, or discard this patch.