Skip to content

Commit

Permalink
Create cookies as raw in HttpFoundationFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Sep 29, 2020
1 parent cffb3a8 commit 42cca49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Factory/HttpFoundationFactory.php
Expand Up @@ -218,7 +218,7 @@ private function createCookie(string $cookie): Cookie
isset($cookieDomain) ? $cookieDomain : null,
isset($cookieSecure),
isset($cookieHttpOnly),
false,
true,
isset($samesite) ? $samesite : null
);
}
Expand Down

0 comments on commit 42cca49

Please sign in to comment.