getStdIn() public method

Gets the process input stream (STDIN).
public getStdIn ( ) : WritableStream
return WritableStream
コード例 #1
0
    /**
     * {@inheritdoc}
     */
    public function start()
    {
        $this->process->start();

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