N98\Magento\Command\Developer\Module\CreateCommand::writeModmanFile PHP Method

writeModmanFile() protected method

protected writeModmanFile ( Symfony\Component\Console\Output\OutputInterface $output )
$output Symfony\Component\Console\Output\OutputInterface
    protected function writeModmanFile(OutputInterface $output)
    {
        $outFile = $this->_magentoRootFolder . '/../modman';
        file_put_contents($outFile, $this->getHelper('twig')->render('dev/module/create/modman.twig', $this->twigVars));
        $output->writeln('<info>Created file: <comment>' . $outFile . '<comment></info>');
    }