diff --git a/src/Contracts/Resolver.php b/src/Contracts/Resolver.php index ff18ce0..3e73cb1 100644 --- a/src/Contracts/Resolver.php +++ b/src/Contracts/Resolver.php @@ -22,7 +22,7 @@ public function max(): int; public function rate(): float; /** - * Get the duration in minutes the rate limiter will timeout. + * Get the duration in seconds the rate limiter will timeout. */ public function duration(): int; } diff --git a/src/Resolvers/User.php b/src/Resolvers/User.php index 510cbba..766c8bd 100644 --- a/src/Resolvers/User.php +++ b/src/Resolvers/User.php @@ -33,7 +33,7 @@ class User implements Resolver protected $rate; /** - * The duration in minutes the rate limiter will timeout. + * The duration in seconds the rate limiter will timeout. * * @var int|string */ @@ -101,7 +101,7 @@ public function rate(): float } /** - * Get the duration in minutes the rate limiter will timeout. + * Get the duration in seconds the rate limiter will timeout. */ public function duration(): int {