Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Http/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down