%PDF- %PDF-
Direktori : /var/www/html/rental/vendor/phpspec/phpspec/features/bootstrap/Fake/ |
Current File : /var/www/html/rental/vendor/phpspec/phpspec/features/bootstrap/Fake/ReRunner.php |
<?php namespace Fake; use PhpSpec\Process\ReRunner as BaseReRunner; class ReRunner implements BaseReRunner { private $hasBeenReRun = false; /** * @return boolean */ public function isSupported() { return true; } public function reRunSuite() { $this->hasBeenReRun = true; } public function hasBeenReRun() { return $this->hasBeenReRun; } }