Passed
Push — master ( 3581f7...005bcc )
by De Cramer
05:10 queued 03:31
created
src/Oliverde8/Component/PhpEtl/ChainOperation/AbstractChainOperation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             return true;
69 69
         }
70 70
 
71
-        while($class = get_parent_class($class)) {
71
+        while ($class = get_parent_class($class)) {
72 72
             if ($class == $targetClass) {
73 73
                 return true;
74 74
             }
Please login to merge, or discard this patch.
src/Oliverde8/Component/PhpEtl/ChainOperation/ChainMergeOperation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $returnItems = [];
39 39
         foreach ($this->chainProcessors as $chainProcessor) {
40
-            $returnItems[] = $chainProcessor->processItemWithChain($item, 0,  $context);
40
+            $returnItems[] = $chainProcessor->processItemWithChain($item, 0, $context);
41 41
         }
42 42
 
43 43
         // Nothing to process.
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function processStop(StopItem $item, ExecutionContext $context): ItemInterface
48 48
     {
49 49
         foreach ($this->chainProcessors as $chainProcessor) {
50
-            $result = $chainProcessor->processItemWithChain($item, 0,  $context);
50
+            $result = $chainProcessor->processItemWithChain($item, 0, $context);
51 51
 
52 52
             if ($result !== $item) {
53 53
                 // Return a new stop item in order to continue flushing out data with stop items.
Please login to merge, or discard this patch.
src/Oliverde8/Component/PhpEtl/ChainOperation/ChainSplitOperation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function processData(DataItemInterface $item, ExecutionContext $context): ItemInterface
36 36
     {
37 37
         foreach ($this->chainProcessors as $chainProcessor) {
38
-            $chainProcessor->processItemWithChain($item, 0,  $context);
38
+            $chainProcessor->processItemWithChain($item, 0, $context);
39 39
         }
40 40
 
41 41
         // Nothing to process.
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public function processStop(StopItem $item, ExecutionContext $context): ItemInterface
46 46
     {
47 47
         foreach ($this->chainProcessors as $chainProcessor) {
48
-            $result = $chainProcessor->processItemWithChain($item, 0,  $context);
48
+            $result = $chainProcessor->processItemWithChain($item, 0, $context);
49 49
 
50 50
             if ($result !== $item) {
51 51
                 // Return a new stop item in order to continue flushing out data with stop items.
Please login to merge, or discard this patch.