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 27080f8 commit 08f09f8Copy full SHA for 08f09f8
src/Cookie/Cookie.php
@@ -13,9 +13,9 @@
13
14
class Cookie
15
{
16
- const SAMESITE_LAX = 'lax';
+ public const SAMESITE_LAX = 'lax';
17
18
- const SAMESITE_STRICT = 'strict';
+ public const SAMESITE_STRICT = 'strict';
19
20
protected $name;
21
src/Uri/Uri.php
@@ -21,7 +21,7 @@ class Uri implements UriInterface
* we apply this default host when no host is given yet to form a
22
* valid URI.
23
*/
24
- const DEFAULT_HTTP_HOST = 'localhost';
+ public const DEFAULT_HTTP_HOST = 'localhost';
25
26
/**
27
* @var array
0 commit comments