| 1 | <?php |
||
| 7 | class PhpUnitResponseStub |
||
| 8 | { |
||
| 9 | const OPTIONS = '--color'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param bool $phpunit |
||
| 13 | * @param bool $randomMode |
||
| 14 | * @param string|null $options |
||
| 15 | * |
||
| 16 | * @return PhpUnitResponse |
||
| 17 | */ |
||
| 18 | public static function create($phpunit, $randomMode, $options) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return PhpUnitResponse |
||
| 25 | */ |
||
| 26 | public static function createEnabled() |
||
| 30 | } |
||
| 31 |