Skip to content

Commit

Permalink
style(cs): Apply auto fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Sep 23, 2024
1 parent 60ea9e9 commit 15f8880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/TokenMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function generate(string $userId): Token {
$token->setStatus(Token::PENDING);
$token->setUserId($userId);
$token->setTimestamp($this->timeFactory->getTime());
$token->setToken($this->random->generate(40, ISecureRandom::CHAR_DIGITS.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_UPPER));
$token->setToken($this->random->generate(40, ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER));

/** @var Token $token */
$token = $this->insert($token);
Expand Down

0 comments on commit 15f8880

Please sign in to comment.