@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public function getFactories() |
10 | 10 | { |
11 | 11 | return [ |
12 | - 'stringValue' => function () { return 'foo'; }, |
|
12 | + 'stringValue' => function() { return 'foo'; }, |
|
13 | 13 | ]; |
14 | 14 | } |
15 | 15 | |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | { |
24 | 24 | return [ |
25 | 25 | 'serviceA' => [ TestServiceProviderOverride::class, 'overrideServiceA' ], |
26 | - 'stringValue' => function (ContainerInterface $container, $value) { |
|
27 | - return $value . '2'; |
|
26 | + 'stringValue' => function(ContainerInterface $container, $value) { |
|
27 | + return $value.'2'; |
|
28 | 28 | }, |
29 | 29 | ]; |
30 | 30 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | public function getFactories() |
15 | 15 | { |
16 | 16 | return [ |
17 | - 'serviceA' => function (ContainerInterface $container) { |
|
17 | + 'serviceA' => function(ContainerInterface $container) { |
|
18 | 18 | $instance = new \stdClass(); |
19 | 19 | $instance->serviceB = $container->get('serviceB'); |
20 | 20 | |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | public function getExtensions() |
37 | 37 | { |
38 | 38 | return [ |
39 | - 'stringValue' => function (ContainerInterface $container, $value) { |
|
40 | - return $value . '1'; |
|
39 | + 'stringValue' => function(ContainerInterface $container, $value) { |
|
40 | + return $value.'1'; |
|
41 | 41 | }, |
42 | 42 | ]; |
43 | 43 | } |