`Url`: Fix type for parameter `$value` of method `setParam()`

This commit is contained in:
raviks789 2023-08-15 11:08:26 +02:00
parent 2a4f448c3e
commit c46446e17f
1 changed files with 2 additions and 2 deletions

View File

@ -642,8 +642,8 @@ class Url
/** /**
* Set a single parameter, overwriting any existing one with the same name * Set a single parameter, overwriting any existing one with the same name
* *
* @param string $param The query parameter name * @param string $param The query parameter name
* @param array|string $value An array or string to set as the parameter value * @param array|string|bool $value An array or string to set as the parameter value
* *
* @return $this * @return $this
*/ */