getStdIn() public méthode

Gets the process input stream (STDIN).
public getStdIn ( ) : WritableStream
Résultat WritableStream
    /**
     * {@inheritdoc}
     */
    public function start()
    {
        $this->process->start();

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