Completed
Push — master ( 0f3db4...6e7c4d )
by Guillaume
16:16
created
DependencyInjection/Configuration.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@
 block discarded – undo
110 110
                 ->scalarNode('timeout')->defaultNull()->end()
111 111
                 ->scalarNode('database')->defaultNull()->end()
112 112
                 ->arrayNode('options')
113
-                  ->useAttributeAsKey('name')
114
-                  ->prototype('scalar')->end()
113
+                    ->useAttributeAsKey('name')
114
+                    ->prototype('scalar')->end()
115 115
                 ->end()
116 116
             ->end()
117 117
         ;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         $supportedStores = ['dbal', 'predis', 'redis', 'json'];
33 33
 
34
-        $normalization = function ($conf) use ($self) {
34
+        $normalization = function($conf) use ($self) {
35 35
 
36 36
             $conf['type'] = $self->resolveNodeType($conf);
37 37
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             ->children()
43 43
                 ->arrayNode('store')
44 44
                     ->beforeNormalization()
45
-                        ->ifTrue(function ($v) {
45
+                        ->ifTrue(function($v) {
46 46
                             return  !isset($v['type']);
47 47
                         })
48 48
                         ->then($normalization)
Please login to merge, or discard this patch.