diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-09 11:56:32 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | a65cdd1e700d00ad52a9bcc2dada26f79d8f270d (patch) | |
tree | 961bdde32b8a7240969450c7312d3f4be0ca5b61 /lib | |
parent | 30f9ef414ed3a6079354ea2204714216f4533dc9 (diff) | |
download | nextcloud-server-a65cdd1e700d00ad52a9bcc2dada26f79d8f270d.tar.gz nextcloud-server-a65cdd1e700d00ad52a9bcc2dada26f79d8f270d.zip |
fix: ARateLimit documentation
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/AppFramework/Http/Attribute/ARateLimit.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Http/Attribute/ARateLimit.php b/lib/public/AppFramework/Http/Attribute/ARateLimit.php index d92fcae1ae1..c06b1180ae3 100644 --- a/lib/public/AppFramework/Http/Attribute/ARateLimit.php +++ b/lib/public/AppFramework/Http/Attribute/ARateLimit.php @@ -17,6 +17,8 @@ namespace OCP\AppFramework\Http\Attribute; */ abstract class ARateLimit { /** + * @param int $limit The maximum number of requests that can be made in the given period in seconds. + * @param int $period The time period in seconds. * @since 27.0.0 */ public function __construct( |