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

initView() protected method

protected initView ( Symfony\Component\Console\Input\InputInterface $input )
$input Symfony\Component\Console\Input\InputInterface
    protected function initView(InputInterface $input)
    {
        $this->twigVars = array('vendorNamespace' => $this->vendorNamespace, 'moduleName' => $this->moduleName, 'codePool' => $this->codePool, 'createControllers' => $input->getOption('add-controllers'), 'createBlocks' => $input->getOption('add-blocks'), 'createModels' => $input->getOption('add-models'), 'createHelpers' => $input->getOption('add-helpers'), 'createSetup' => $input->getOption('add-setup'), 'authorName' => $input->getOption('author-name'), 'authorEmail' => $input->getOption('author-email'), 'description' => $input->getOption('description'));
    }