1 | <?php |
||
7 | class ProcessFactory implements ProcessFactoryInterface |
||
8 | { |
||
9 | /** |
||
10 | * @inheritdoc |
||
11 | */ |
||
12 | public function create($commandLine, $cwd = null, array $env = null, $input = null, $timeout = 60, array $options = []) |
||
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | public function createFromProcess(SymfonyProcess $process) |
||
38 | } |
||
39 |