| 1 | <?php |
||
| 9 | abstract class AbstractPhpUnitProcessor |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var OutputInterface |
||
| 13 | */ |
||
| 14 | protected $output; |
||
| 15 | /** |
||
| 16 | * @var ToolPathFinder |
||
| 17 | */ |
||
| 18 | protected $toolPathFinder; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * PhpUnitProcessor constructor. |
||
| 22 | * |
||
| 23 | * @param OutputInterface $output |
||
| 24 | * @param ToolPathFinder $toolPathFinder |
||
| 25 | */ |
||
| 26 | public function __construct(OutputInterface $output, ToolPathFinder $toolPathFinder) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param Process $process |
||
| 34 | * |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | protected function runProcess(Process $process) |
||
| 50 | } |
||
| 51 |