@@ -136,6 +136,6 @@ |
||
| 136 | 136 | */ |
| 137 | 137 | public function setWaitingForTestResult($waitingForTestResult) |
| 138 | 138 | { |
| 139 | - $this->waitingForTestResult = (bool) $waitingForTestResult; |
|
| 139 | + $this->waitingForTestResult = (bool)$waitingForTestResult; |
|
| 140 | 140 | } |
| 141 | 141 | } |
@@ -46,6 +46,6 @@ |
||
| 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 | } |
@@ -16,7 +16,7 @@ |
||
| 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 | /** |