@@ -52,7 +52,7 @@ |
||
52 | 52 | return $arguments; |
53 | 53 | } |
54 | 54 | |
55 | - $paramsKeys = array_map(function (\ReflectionParameter $element) { |
|
55 | + $paramsKeys = array_map(function(\ReflectionParameter $element) { |
|
56 | 56 | return $element->getName(); |
57 | 57 | }, $function->getParameters()); |
58 | 58 |
@@ -83,7 +83,7 @@ |
||
83 | 83 | ->addMethodCall('addGlobalIgnoredName', ['AfterFeature']) |
84 | 84 | ->addMethodCall('addGlobalIgnoredName', ['AfterSuite']); |
85 | 85 | |
86 | - $taggedServices = array_map(function ($serviceId) { |
|
86 | + $taggedServices = array_map(function($serviceId) { |
|
87 | 87 | return new Reference($serviceId); |
88 | 88 | }, array_keys($container->findTaggedServiceIds(self::STEP_ARGUMENT_INJECTOR_HOOK_TAG_ID))); |
89 | 89 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | $this->organiserMock = $this->prophesize(BehatArgumentOrganiser::class); |
64 | 64 | $this->functionMock = $this->prophesize(\ReflectionMethod::class); |
65 | 65 | $this->readerMock = $this->prophesize(Reader::class); |
66 | - $this->annotationMock = function () { return $this->prophesize(StepInjectorArgument::class); }; |
|
66 | + $this->annotationMock = function() { return $this->prophesize(StepInjectorArgument::class); }; |
|
67 | 67 | $this->holderMock = $this->prophesize(StepArgumentHolder::class); |
68 | 68 | |
69 | 69 | $this->organiser = new ArgumentOrganiser( |