Completed
Pull Request — master (#37)
by Alessandro
02:23
created
src/Paraunit/Process/AbstractParaunitProcess.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,6 +136,6 @@
 block discarded – undo
136 136
      */
137 137
     public function setWaitingForTestResult($waitingForTestResult)
138 138
     {
139
-        $this->waitingForTestResult = (bool) $waitingForTestResult;
139
+        $this->waitingForTestResult = (bool)$waitingForTestResult;
140 140
     }
141 141
 }
Please login to merge, or discard this patch.
src/Paraunit/TestResult/TraceStep.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,6 +46,6 @@
 block discarded – undo
46 46
      */
47 47
     public function __toString()
48 48
     {
49
-        return $this->filePath . ':' . $this->line;
49
+        return $this->filePath.':'.$this->line;
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/Paraunit/TestResult/TestResultWithAbnormalTermination.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function getFailureMessage()
18 18
     {
19
-        return parent::getFailureMessage() . "\n" . $this->testOutput;
19
+        return parent::getFailureMessage()."\n".$this->testOutput;
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.