From 4f3b3721c4cd2c3bd9dca43aa1876a1e52c95065 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 15 Apr 2025 20:15:44 +0100 Subject: [PATCH] Remove comments Signed-off-by: snipe --- app/Console/Commands/GeneratePersonalAccessToken.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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);