Test Failed
Pull Request — develop (#16)
by Denis
06:50
created
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                                 ->always()
48 48
                                 // here we force casting `float` to `string` to avoid TypeError when working with Redis
49 49
                                 // see for more details: https://github.com/phpredis/phpredis/issues/1538
50
-                                ->then(function ($v) {
50
+                                ->then(function($v) {
51 51
                                     if ($v == null) {
52 52
                                         return null;
53 53
                                     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                                 ->always()
70 70
                                 // here we force casting `float` to `string` to avoid TypeError when working with Redis
71 71
                                 // see for more details: https://github.com/phpredis/phpredis/issues/1538
72
-                                ->then(function ($v) { return (string) $v; } )
72
+                                ->then(function($v) { return (string) $v; } )
73 73
                             ->end()
74 74
                         ->end()
75 75
                         ->booleanNode('persistent_connections')->end()
Please login to merge, or discard this patch.