Remove comments

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-04-15 20:15:44 +01:00
parent e1abdd1c7b
commit 4f3b3721c4

View file

@ -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);