`UrlParams`: Fix type for parameter `$value` of method `add()`

The parameter `$value` can be null, string or bool.
This commit is contained in:
raviks789 2023-08-15 10:54:37 +02:00
parent 0476046ce6
commit d5e93a9d68
1 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,8 @@ class UrlParams
* This will add the given parameter, regardless of whether it already
* exists.
*
* @param string $param The parameter you're interested in
* @param string $value The value to be stored
* @param string $param The parameter you're interested in
* @param string|bool $value The value to be stored
*
* @return $this
*/