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

askGithubPassword() protected method

protected askGithubPassword ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : mixed
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return mixed
    protected function askGithubPassword(InputInterface $input, OutputInterface $output)
    {
        $question = new Question('<info>Github password? </info>');
        $question->setHidden(true);
        $question->setHiddenFallback(false);
        return $this->getHelper('question')->ask($input, $output, $question);
    }