Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Dec 19, 2024
1 parent 48db8cd commit 0cf1ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Routing/Middleware/ThrottleRequests.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes
(object) [
'key' => $prefix.$this->resolveRequestSignature($request),
'maxAttempts' => $this->resolveMaxAttempts($request, $maxAttempts),
'decaySeconds' => SECONDS_PER_DAY * $decayMinutes,
'decaySeconds' => SECONDS_PER_MINUTE * $decayMinutes,
'responseCallback' => null,
],
]
Expand Down

0 comments on commit 0cf1ecc

Please sign in to comment.