Skip to content

Commit c2647d9

Browse files
authored
Fix for 8.2 (#42)
1 parent 1db5777 commit c2647d9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Http/Response.php

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
class Response implements IResponse
1414
{
1515

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+
1625
/** @var int */
1726
private $code = self::S200_OK;
1827

0 commit comments

Comments
 (0)