Icicle\Concurrent\Process\Process::getStdErr PHP Method

getStdErr() public method

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