Acacha\Llum\Console\GithubInitCommand::gitHubUsername PHP Method

gitHubUsername() protected method

Get github username.
protected gitHubUsername ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : array | mixed
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return array | mixed
    protected function gitHubUsername(InputInterface $input, OutputInterface $output)
    {
        $username = $input->getArgument('github_username');
        return isset($username) ? $username : $this->getGithubUserNameFromConfig($output);
    }