@@ -33,7 +33,7 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | private function printFileRecap(TestResultContainerInterface $testResultContainer) |
| 35 | 35 | { |
| 36 | - if (! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) { |
|
| 36 | + if ( ! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) { |
|
| 37 | 37 | return; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | |
| 69 | 69 | public function onEngineEnd() |
| 70 | 70 | { |
| 71 | - while (! $this->isRowFull()) { |
|
| 71 | + while ( ! $this->isRowFull()) { |
|
| 72 | 72 | $this->output->write(' '); |
| 73 | 73 | ++$this->singleRowCounter; |
| 74 | 74 | } |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | { |
| 82 | 82 | $this->getOutput()->writeln(''); |
| 83 | 83 | $this->getOutput()->writeln(''); |
| 84 | - $this->getOutput()->writeln('Execution time -- ' . gmdate('H:i:s', (int) ($stopEvent->getDuration() / 1000))); |
|
| 84 | + $this->getOutput()->writeln('Execution time -- ' . gmdate('H:i:s', (int)($stopEvent->getDuration() / 1000))); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | private function printTestCounters() |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | |
| 82 | 82 | public function countTestResults(): int |
| 83 | 83 | { |
| 84 | - if (! $this->testResultFormat instanceof TestResultWithSymbolFormat) { |
|
| 84 | + if ( ! $this->testResultFormat instanceof TestResultWithSymbolFormat) { |
|
| 85 | 85 | return 0; |
| 86 | 86 | } |
| 87 | 87 | |