| 1 | <?php |
||
| 7 | class PassthruCommandRunner implements CommandRunner |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var CliFunctionChecker |
||
| 11 | */ |
||
| 12 | private $functionChecker; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param CliFunctionChecker $functionChecker |
||
| 16 | */ |
||
| 17 | public function __construct(CliFunctionChecker $functionChecker) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param $path |
||
| 24 | * @param $args |
||
| 25 | */ |
||
| 26 | public function runCommand($path, $args) |
||
| 32 | |||
| 33 | public function isSupported() |
||
| 37 | } |
||
| 38 |