Acacha\Llum\Console\GithubInitCommand::getGithubUserNameFromConfig PHP 메소드

getGithubUserNameFromConfig() 보호된 메소드

Get github username from llum config.
protected getGithubUserNameFromConfig ( Symfony\Component\Console\Output\OutputInterface $output ) : array
$output Symfony\Component\Console\Output\OutputInterface
리턴 array
    protected function getGithubUserNameFromConfig(OutputInterface $output)
    {
        $username = $this->parser->getGitHubUsername();
        if (is_null($username)) {
            $this->showErrorRunLlumInitFirst($output, 'username');
        }
        return $username;
    }