Symfony\Component\Process\Process::readPipesForOutput PHP Метод

readPipesForOutput() приватный Метод

Reads pipes for the freshest output.
private readPipesForOutput ( string $caller, boolean $blocking = false )
$caller string The name of the method that needs fresh outputs
$blocking boolean Whether to use blocking calls or not
    private function readPipesForOutput($caller, $blocking = false)
    {
        if ($this->outputDisabled) {
            throw new LogicException('Output has been disabled.');
        }
        $this->requireProcessIsStarted($caller);
        $this->updateStatus($blocking);
    }