Passed
Pull Request — master (#30)
by De Cramer
08:52
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.
src/Oliverde8/Component/PhpEtl/Model/File/FlySystemFileSystem.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
     public function delete(string $path): void
51 51
     {
52
-       $this->filesystem->delete($path);
52
+        $this->filesystem->delete($path);
53 53
     }
54 54
 
55 55
     public function deleteDirectory(string $path): void
Please login to merge, or discard this patch.