Completed
Branch master (a37b1d)
by Tobias
09:04
created
Category
src/DependencyInjection/Compiler/DataCollectorCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $factory   = $container->register($factoryId, Factory::class);
40 40
         // Check if logging support is enabled
41 41
         if ($container->hasParameter('cache.logging')) {
42
-            $config     = $container->getParameter('cache.logging');
42
+            $config = $container->getParameter('cache.logging');
43 43
             $factory->addArgument(new Reference($config['logger']));
44 44
             $factory->addArgument($config['level']);
45 45
         }
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                                 ->beforeNormalization()
182 182
                                     ->ifString()
183 183
                                     ->then(
184
-                                        function ($v) {
184
+                                        function($v) {
185 185
                                             return (array) $v;
186 186
                                         }
187 187
                                     )
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                                 ->beforeNormalization()
194 194
                                     ->ifString()
195 195
                                     ->then(
196
-                                        function ($v) {
196
+                                        function($v) {
197 197
                                             return (array) $v;
198 198
                                         }
199 199
                                     )
Please login to merge, or discard this patch.