Acacha\Llum\Console\BootCommand::boot PHP Method

boot() protected method

Executes boot command.
protected boot ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function boot(InputInterface $input, OutputInterface $output)
    {
        if ($this->devtools() == -1) {
            return;
        }
        $this->touchSqliteFile();
        $this->sqliteEnv();
        $this->migrate();
        $this->serve($input, $output);
    }
BootCommand