| 1 | <?php |
||
| 11 | class ProcessExecutor implements ConfigAwareInterface, LoggerAwareInterface, OutputAwareInterface, VerbosityThresholdInterface |
||
| 12 | { |
||
| 13 | use ExecTrait; |
||
| 14 | use TaskIO; // uses LoggerAwareTrait and ConfigAwareTrait |
||
| 15 | use ProgressIndicatorAwareTrait; |
||
| 16 | use OutputAwareTrait; |
||
| 17 | |||
| 18 | public function __construct(Process $process) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | protected function getCommandDescription() |
||
| 30 | |||
| 31 | public function run() |
||
| 35 | } |
||
| 36 |