Skip to content

Commit

Permalink
Fix for 8.2 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubvojacek authored May 22, 2023
1 parent 1db5777 commit c2647d9
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit c2647d9

Please sign in to comment.