You are here

public static function WindowsPipes::create in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

WindowsPipes

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\Pipes

Code

public static function create(Process $process, $input) {
  return new static($process
    ->isOutputDisabled(), $input);
}