Acacha\Llum\Console\InitCommand::init PHP Method

init() public method

init command.
public init ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    public function init(InputInterface $input, OutputInterface $output)
    {
        try {
            $this->executeWizard($input, $output);
            $this->filesytem->overwrite((new LlumRCFile())->path(), $this->compiler->compile($this->filesytem->get($this->getStubPath()), $this->data));
        } catch (\Exception $e) {
            print_r($e->xdebug_message);
        }
    }