| 1 | <?php |
||
| 10 | class ProcessExecutor implements OutputAwareInterface |
||
| 11 | { |
||
| 12 | use ExecTrait; |
||
| 13 | use TaskIO; // uses LoggerAwareTrait and ConfigAwareTrait |
||
| 14 | use ProgressIndicatorAwareTrait; |
||
| 15 | use OutputAwareTrait; |
||
| 16 | |||
| 17 | public function __construct(Process $process) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getCommand() |
||
| 33 | |||
| 34 | public function run() |
||
| 38 | } |
||
| 39 |