Icicle\Concurrent\Process\Process::getStdErr PHP Метод

getStdErr() публичный Метод

Gets the process error stream (STDERR).
public getStdErr ( ) : ReadableStream
Результат ReadableStream
    public function getStdErr() : ReadableStream
    {
        if (null === $this->stderr) {
            throw new StatusError('The process has not been started.');
        }
        return $this->stderr;
    }