Completed
Push — master ( ebe931...c89697 )
by GBProd
02:12
created
tests/ElasticsearchDataProviderBundle/DataProvider/RegistryEntryTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     
40 40
     public function testMatch()
41 41
     {
42
-       $testedInstance = new RegistryEntry(
42
+        $testedInstance = new RegistryEntry(
43 43
             $this->getMock(DataProviderInterface::class),
44 44
             'my_index',
45 45
             'my_type'
Please login to merge, or discard this patch.
src/ElasticsearchDataProviderBundle/DataProvider/Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     {
32 32
         $entries = $this->registry->get($index, $type);
33 33
         
34
-        foreach($entries as $entry) {
34
+        foreach ($entries as $entry) {
35 35
             $entry->getProvider()->run(
36 36
                 $client, 
37 37
                 $entry->getIndex(), 
Please login to merge, or discard this patch.
src/ElasticsearchDataProviderBundle/DataProvider/Registry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         return array_filter(
40 40
             $this->entries,
41
-            function ($entry) use ($index, $type) {
41
+            function($entry) use ($index, $type) {
42 42
                 return $entry->match($index, $type);
43 43
             }
44 44
         );
Please login to merge, or discard this patch.