diff --git a/system/Cookie/Cookie.php b/system/Cookie/Cookie.php index ad461c721112..a966c8fceee8 100644 --- a/system/Cookie/Cookie.php +++ b/system/Cookie/Cookie.php @@ -225,9 +225,19 @@ public static function fromHeaderString(string $cookie, bool $raw = false) /** * Construct a new Cookie instance. * - * @param string $name The cookie's name - * @param string $value The cookie's value - * @param array{prefix?: string, max-age?: int|numeric-string, expires?: DateTimeInterface|int|string, path?: string, domain?: string, secure?: bool, httponly?: bool, samesite?: string, raw?: bool} $options The cookie's options + * @param string $name The cookie's name + * @param string $value The cookie's value + * @param array{ + * prefix?: string, + * max-age?: int|numeric-string, + * expires?: DateTimeInterface|int|string, + * path?: string, + * domain?: string, + * secure?: bool, + * httponly?: bool, + * samesite?: string, + * raw?: bool, + * } $options The cookie's options * * @throws CookieException */