`UrlParams`: Fix type for parameter `$value` of method `add()`
The parameter `$value` can be null, string or bool.
This commit is contained in:
parent
0476046ce6
commit
d5e93a9d68
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue