diff --git a/app/Console/Commands/GeneratePersonalAccessToken.php b/app/Console/Commands/GeneratePersonalAccessToken.php index 70cf51205..63b246978 100644 --- a/app/Console/Commands/GeneratePersonalAccessToken.php +++ b/app/Console/Commands/GeneratePersonalAccessToken.php @@ -43,7 +43,6 @@ class GeneratePersonalAccessToken extends Command */ public function __construct(TokenRepository $tokenRepository) { - //$this->validation = $validation; $this->tokenRepository = $tokenRepository; parent::__construct(); } @@ -74,7 +73,7 @@ class GeneratePersonalAccessToken extends Command } else { - $this->warn('Your API Token has been created. Be sure to copy this token now, as it will not be accessible again.'); + $this->warn('Your API Token has been created. Be sure to copy this token now, as it WILL NOT be accessible again.'); if ($token = DB::table('oauth_access_tokens')->where('user_id', '=', $user->id)->where('name','=',$accessTokenName)->orderBy('created_at', 'desc')->first()) { $this->info('API Token ID: '.$token->id);