Completed
Push — master ( 41eda3...f446d4 )
by Alessandro
11:09 queued 05:39
created
src/Paraunit/Coverage/CoverageResult.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,22 +62,22 @@
 block discarded – undo
62 62
         $coverageData = $this->coverageMerger->getCoverageData();
63 63
 
64 64
         $cloverFilePath = $this->coverageOutputPaths->getCloverFilePath();
65
-        if (! $cloverFilePath->isEmpty()) {
65
+        if ( ! $cloverFilePath->isEmpty()) {
66 66
             $this->cloverResult->process($coverageData, $cloverFilePath);
67 67
         }
68 68
 
69 69
         $xmlPath = $this->coverageOutputPaths->getXmlPath();
70
-        if (! $xmlPath->isEmpty()) {
70
+        if ( ! $xmlPath->isEmpty()) {
71 71
             $this->xmlResult->process($coverageData, $xmlPath);
72 72
         }
73 73
 
74 74
         $htmlPath = $this->coverageOutputPaths->getHtmlPath();
75
-        if (! $htmlPath->isEmpty()) {
75
+        if ( ! $htmlPath->isEmpty()) {
76 76
             $this->htmlResult->process($coverageData, $htmlPath);
77 77
         }
78 78
 
79 79
         $textFile = $this->coverageOutputPaths->getTextFile();
80
-        if (! $textFile->isEmpty()) {
80
+        if ( ! $textFile->isEmpty()) {
81 81
             $this->textResult->writeToFile($coverageData, $textFile);
82 82
         }
83 83
 
Please login to merge, or discard this patch.