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

askGithubUsername() public method

public askGithubUsername ( 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 askGithubUsername(InputInterface $input, OutputInterface $output)
    {
        $defaultusername = $this->defaultUsername();
        $question = new Question('<info>Please enter your github username (' . $defaultusername . ') ? </info>', $defaultusername);
        $this->github_username = $this->getHelper('question')->ask($input, $output, $question);
    }