From c46446e17f406b718694b64677210647c8db7fee Mon Sep 17 00:00:00 2001 From: raviks789 <33730024+raviks789@users.noreply.github.com> Date: Tue, 15 Aug 2023 11:08:26 +0200 Subject: [PATCH] `Url`: Fix type for parameter `$value` of method `setParam()` --- library/Icinga/Web/Url.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Web/Url.php b/library/Icinga/Web/Url.php index 038d29d79..2d0443b41 100644 --- a/library/Icinga/Web/Url.php +++ b/library/Icinga/Web/Url.php @@ -642,8 +642,8 @@ class Url /** * Set a single parameter, overwriting any existing one with the same name * - * @param string $param The query parameter name - * @param array|string $value An array or string to set as the parameter value + * @param string $param The query parameter name + * @param array|string|bool $value An array or string to set as the parameter value * * @return $this */