@@ -62,22 +62,22 @@ |
||
| 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 | |