Acacha\Llum\Github\GithubAPI::tokenName PHP Method

tokenName() public method

public tokenName ( ) : mixed
return mixed
    public function tokenName()
    {
        return $this->tokenName;
    }

Usage Example

Example #1
0
 /**
  * Executes wizard.
  *
  * @param InputInterface $input
  * @param OutputInterface $output
  */
 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()];
 }