Acacha\Llum\Tests\InitCommandTest::getInputStream PHP Méthode

getInputStream() protected méthode

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