Passed
Push — main ( 3e88e0...2cfca0 )
by De Cramer
09:34 queued 07:37
created
Model/ExecutionContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         }
28 28
 
29 29
         $logPath = $this->workDir . "/execution.log";
30
-        if(file_exists($logPath)) {
30
+        if (file_exists($logPath)) {
31 31
             $this->fileSystem->writeStream("execution.log", fopen($logPath, 'r'));
32 32
         }
33 33
     }
Please login to merge, or discard this patch.
Etl/Operation/Cleanup/DeleteFilesForOldExecutionOperation.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
         try {
39 39
             $fileSystem->delete("");
40
-        } catch (\Exception $exception){}
40
+        } catch (\Exception $exception) {}
41 41
 
42 42
         $executionWorkDir = $this->chainWorkDirManager->getLocalTmpWorkDir($entity);
43 43
         if (!file_exists($executionWorkDir)) {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                 continue;
86 86
             }
87 87
 
88
-            $files[] =$item;
88
+            $files[] = $item;
89 89
         }
90 90
 
91 91
         return $files;
Please login to merge, or discard this patch.