| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class ReRunner implements BaseReRunner |
||
| 19 | { |
||
| 20 | private $hasBeenReRun = false; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return bool |
||
| 24 | */ |
||
| 25 | public function isSupported() |
||
| 26 | { |
||
| 27 | return true; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function reRunSuite() |
||
| 31 | { |
||
| 32 | $this->hasBeenReRun = true; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function hasBeenReRun() |
||
| 36 | { |
||
| 37 | return $this->hasBeenReRun; |
||
| 38 | } |
||
| 40 |