Matthias\SymfonyConsoleForm\Tests\Helper\ApplicationTester::getInputStream PHP Method

getInputStream() private method

private getInputStream ( ) : resource
return resource
    private function getInputStream()
    {
        if (null === $this->inputStream) {
            $this->inputStream = fopen('php://memory', 'r+', false);
        }
        return $this->inputStream;
    }