N98\Magento\Command\Installer\UninstallCommandTest::getInputStream PHP Method

getInputStream() protected method

protected getInputStream ( $input ) : resource
$input
return resource
    protected function getInputStream($input)
    {
        $stream = fopen('php://memory', 'r+', false);
        fputs($stream, $input);
        rewind($stream);
        return $stream;
    }