Skip to content

Commit 86d0a5c

Browse files
committed
formatting
1 parent e83d250 commit 86d0a5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Cache/RateLimiting/Limit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ public static function perMinute($maxAttempts)
6161
/**
6262
* Create a new rate limit using minutes as decay time.
6363
*
64-
* @param int $maxAttempts
6564
* @param int $decayMinutes
65+
* @param int $maxAttempts
6666
* @return static
6767
*/
68-
public static function perMinutes($maxAttempts, $decayMinutes = 1)
68+
public static function perMinutes($decayMinutes, $maxAttempts)
6969
{
7070
return new static('', $maxAttempts, $decayMinutes);
7171
}

0 commit comments

Comments
 (0)