Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
browner12 committed Nov 6, 2024
1 parent a034701 commit 3803b2e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/Illuminate/Auth/Passwords/CacheTokenRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class CacheTokenRepository implements TokenRepositoryInterface
* Create a new token repository instance.
*/
public function __construct(
protected Repository $cache,
protected Repository $cache,
protected HasherContract $hasher,
protected string $hashKey,
protected int $expires = 3600,
protected int $throttle = 60
protected string $hashKey,
protected int $expires = 3600,
protected int $throttle = 60
) {}

/**
Expand Down Expand Up @@ -120,6 +120,5 @@ public function delete(CanResetPasswordContract $user)
*/
public function deleteExpired()
{
return;
}
}

0 comments on commit 3803b2e

Please sign in to comment.