From 41a84b4adee7f70f0aefd07df52f52f240339359 Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Wed, 26 Feb 2025 10:47:21 -0500 Subject: [PATCH] dont redefine the properties --- src/Auth/Passwords/TokenRepository.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Auth/Passwords/TokenRepository.php b/src/Auth/Passwords/TokenRepository.php index 0a717929fb..3ba24434f5 100644 --- a/src/Auth/Passwords/TokenRepository.php +++ b/src/Auth/Passwords/TokenRepository.php @@ -12,9 +12,6 @@ class TokenRepository extends DatabaseTokenRepository { protected $files; - protected $hasher; - protected $hashKey; - protected $expires; protected $path; public function __construct(Filesystem $files, HasherContract $hasher, $table, $hashKey, $expires = 60, $throttle = 60)