Icicle\Concurrent\Process\Process::getStdErr PHP Méthode

getStdErr() public méthode

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