diff --git a/src/Http/Response.php b/src/Http/Response.php index b2b7392..a0993be 100644 --- a/src/Http/Response.php +++ b/src/Http/Response.php @@ -13,6 +13,15 @@ class Response implements IResponse { + /** @var string The domain in which the cookie will be available */ + public $cookieDomain = ''; + + /** @var string The path in which the cookie will be available */ + public $cookiePath = '/'; + + /** @var bool Whether the cookie is available only through HTTPS */ + public $cookieSecure = false; + /** @var int */ private $code = self::S200_OK;