diff --git a/Passwords/DatabaseTokenRepository.php b/Passwords/DatabaseTokenRepository.php index ba0b81a6..935b93c2 100755 --- a/Passwords/DatabaseTokenRepository.php +++ b/Passwords/DatabaseTokenRepository.php @@ -12,6 +12,9 @@ class DatabaseTokenRepository implements TokenRepositoryInterface { /** * Create a new token repository instance. + * + * @param int $expires The number of seconds a token should remain valid. + * @param int $throttle Minimum number of seconds before the user can generate new password reset tokens. */ public function __construct( protected ConnectionInterface $connection,