getStdOut() 공개 메소드

Gets the process output stream (STDOUT).
public getStdOut ( ) : ReadableStream
리턴 ReadableStream
예제 #1
0
    /**
     * {@inheritdoc}
     */
    public function start()
    {
        $this->process->start();

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