Completed
Push — master ( 98f353...32973a )
by GBProd
04:02
created
tests/ElasticaBundle/DependencyInjection/ElasticaExtensionTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     {
22 22
         $this->extension = new ElasticaExtension();
23 23
         $this->container = new ContainerBuilder();
24
-     }
24
+        }
25 25
 
26 26
     public function testCreateClients()
27 27
     {
Please login to merge, or discard this patch.
src/ElasticaBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
                     ->defaultValue([])
28 28
                     ->prototype('array')
29 29
                         ->beforeNormalization()
30
-                            ->ifTrue(function ($values) {
30
+                            ->ifTrue(function($values) {
31 31
                                 return is_array($values) && !array_key_exists('connections', $values);
32 32
                             })
33
-                            ->then(function ($values) {
33
+                            ->then(function($values) {
34 34
                                 return ['connections' => [$values]];
35 35
                             })
36 36
                         ->end()
Please login to merge, or discard this patch.