tokenName() 공개 메소드

public tokenName ( ) : mixed
리턴 mixed
예제 #1
0
파일: InitCommand.php 프로젝트: acacha/llum
 /**
  * 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()];
 }