Passed
Pull Request — master (#7)
by De Cramer
07:09 queued 05:34
created
src/Oliverde8/Component/PhpEtl/Item/DataItem.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,6 +36,6 @@
 block discarded – undo
36 36
 
37 37
     public function getData()
38 38
     {
39
-       return $this->data;
39
+        return $this->data;
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Oliverde8/Component/PhpEtl/ChainBuilder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,6 +65,6 @@
 block discarded – undo
65 65
             }
66 66
         }
67 67
 
68
-       throw new UnknownOperationException("No compatible factories were found for operation '{$config['operation']}'");
68
+        throw new UnknownOperationException("No compatible factories were found for operation '{$config['operation']}'");
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
Component/PhpEtl/Builder/Factories/Grouping/SimpleGroupingFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
     protected function configureValidator(): Constraint
33 33
     {
34 34
         return new Assert\Collection([
35
-             'grouping-key' => new Assert\NotBlank(),
36
-             'group-identifier' => new Assert\Optional()
37
-         ]);
35
+                'grouping-key' => new Assert\NotBlank(),
36
+                'group-identifier' => new Assert\Optional()
37
+            ]);
38 38
     }
39 39
 }
Please login to merge, or discard this patch.