We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db5777 commit c2647d9Copy full SHA for c2647d9
src/Http/Response.php
@@ -13,6 +13,15 @@
13
class Response implements IResponse
14
{
15
16
+ /** @var string The domain in which the cookie will be available */
17
+ public $cookieDomain = '';
18
+
19
+ /** @var string The path in which the cookie will be available */
20
+ public $cookiePath = '/';
21
22
+ /** @var bool Whether the cookie is available only through HTTPS */
23
+ public $cookieSecure = false;
24
25
/** @var int */
26
private $code = self::S200_OK;
27
0 commit comments