Completed
Push — 1.0 ( 529ebf...89a641 )
by David
14s queued 11s
created
src/Tests/Fixtures/TestServiceProviderOverride.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Tests/Fixtures/TestServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.