Skip to content

Commit d45342a

Browse files
authored
style: use multiline array shape (#9662)
1 parent f0ba124 commit d45342a

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

system/Cookie/Cookie.php

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,19 @@ public static function fromHeaderString(string $cookie, bool $raw = false)
225225
/**
226226
* Construct a new Cookie instance.
227227
*
228-
* @param string $name The cookie's name
229-
* @param string $value The cookie's value
230-
* @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
228+
* @param string $name The cookie's name
229+
* @param string $value The cookie's value
230+
* @param array{
231+
* prefix?: string,
232+
* max-age?: int|numeric-string,
233+
* expires?: DateTimeInterface|int|string,
234+
* path?: string,
235+
* domain?: string,
236+
* secure?: bool,
237+
* httponly?: bool,
238+
* samesite?: string,
239+
* raw?: bool,
240+
* } $options The cookie's options
231241
*
232242
* @throws CookieException
233243
*/

0 commit comments

Comments
 (0)