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

executeWizard() protected method

Executes wizard.
protected executeWizard ( 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 executeWizard(InputInterface $input, OutputInterface $output)
    {
        $this->askGithubUsername($input, $output);
        $this->askGithubToken($input, $output);
        $this->data = ["GITHUB_USERNAME" => $this->github_username, "GITHUB_TOKEN" => $this->github_token, "GITHUB_TOKEN_NAME" => $this->api->tokenName()];
    }