getStdOut() public method

Gets the process output stream (STDOUT).
public getStdOut ( ) : ReadableStream
return ReadableStream
コード例 #1
0
    /**
     * {@inheritdoc}
     */
    public function start()
    {
        $this->process->start();

        $this->channel = new Channel($this->process->getStdOut(), $this->process->getStdIn());
    }