Remove comments
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
e1abdd1c7b
commit
4f3b3721c4
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue