From 932caaf1960c455f69520d0c3e0796e2abd64a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elis=C3=A9e=20Chemin?= Date: Tue, 17 Dec 2024 16:23:00 +0100 Subject: [PATCH] Updated the parameter comments --- htdocs/core/lib/resource.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/core/lib/resource.lib.php b/htdocs/core/lib/resource.lib.php index 90292bd922273..cc11cb3fc3760 100644 --- a/htdocs/core/lib/resource.lib.php +++ b/htdocs/core/lib/resource.lib.php @@ -150,9 +150,9 @@ function resource_admin_prepare_head() /** * Returns the resources marked "busy" and assigned to an event during the specified time frame. * You can specify an array of resources and the function will return the overlap of the two. - * @param string $dateStart - * @param string $dateEnd - * @param int[] $resource_ids + * @param string $dateStart the lower bound of the selector + * @param string $dateEnd the upper bound of the selector + * @param int[] $resource_ids the ids the request should filter by * @return array[] */ function getBusyResourcesInPeriod(string $dateStart, string $dateEnd, array $resource_ids = array()) : array