public static function WindowsPipes::create in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Pipes/WindowsPipes.php \Symfony\Component\Process\Pipes\WindowsPipes::create()
Creates a new WindowsPipes instance.
Parameters
Process $process The process:
$input:
Return value
1 call to WindowsPipes::create()
- Process::getDescriptors in vendor/
symfony/ process/ Process.php - Creates the descriptors needed by the proc_open.
File
- vendor/
symfony/ process/ Pipes/ WindowsPipes.php, line 169
Class
- WindowsPipes
- WindowsPipes implementation uses temporary files as handles.
Namespace
Symfony\Component\Process\PipesCode
public static function create(Process $process, $input) {
return new static($process
->isOutputDisabled(), $input);
}