From bd4cd4b35ab6bda4ea040db68961038ed96fc061 Mon Sep 17 00:00:00 2001 From: michalsn Date: Sun, 30 Nov 2025 17:50:09 +0100 Subject: [PATCH] docs: remove internal tag from Throttler::check() description --- system/Throttle/Throttler.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/system/Throttle/Throttler.php b/system/Throttle/Throttler.php index c023b5e4d052..fba7665de4a8 100644 --- a/system/Throttle/Throttler.php +++ b/system/Throttle/Throttler.php @@ -90,8 +90,6 @@ public function getTokenTime(): int * @param int $capacity The number of requests the "bucket" can hold * @param int $seconds The time it takes the "bucket" to completely refill * @param int $cost The number of tokens this action uses. - * - * @internal param int $maxRequests */ public function check(string $key, int $capacity, int $seconds, int $cost = 1): bool {