Completed
Pull Request — master (#125)
by Alessandro
06:35 queued 04:11
created
src/Paraunit/Printer/FilesRecapPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/ProcessPrinter.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
 
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
         }
Please login to merge, or discard this patch.
src/Paraunit/Printer/FinalPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
src/Paraunit/TestResult/TestResultContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.