Skip to content

Commit cb5b303

Browse files
committed
docs: fix @param type
1 parent ffa9f38 commit cb5b303

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

system/HTTP/ResponseInterface.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -322,15 +322,15 @@ public function sendBody();
322322
* Accepts an arbitrary number of binds (up to 7) or an associative
323323
* array in the first parameter containing all the values.
324324
*
325-
* @param array|string $name Cookie name or array containing binds
326-
* @param string $value Cookie value
327-
* @param string $expire Cookie expiration time in seconds
328-
* @param string $domain Cookie domain (e.g.: '.yourdomain.com')
329-
* @param string $path Cookie path (default: '/')
330-
* @param string $prefix Cookie name prefix
331-
* @param bool $secure Whether to only transfer cookies via SSL
332-
* @param bool $httponly Whether only make the cookie accessible via HTTP (no javascript)
333-
* @param string|null $samesite
325+
* @param array|Cookie|string $name Cookie name / array containing binds / Cookie object
326+
* @param string $value Cookie value
327+
* @param string $expire Cookie expiration time in seconds
328+
* @param string $domain Cookie domain (e.g.: '.yourdomain.com')
329+
* @param string $path Cookie path (default: '/')
330+
* @param string $prefix Cookie name prefix
331+
* @param bool $secure Whether to only transfer cookies via SSL
332+
* @param bool $httponly Whether only make the cookie accessible via HTTP (no javascript)
333+
* @param string|null $samesite
334334
*
335335
* @return $this
336336
*/

0 commit comments

Comments
 (0)