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.
2 parents 23de646 + 0631cdf commit ad5d50dCopy full SHA for ad5d50d
1 file changed
src/Config.php
@@ -950,7 +950,7 @@ public function getCookie(string $cookieName): mixed
950
*/
951
public function getCookieName(string $cookieName): string
952
{
953
- return $cookieName . ( $this->isHttps ? '_https' : '' );
+ return ($this->isHttps ? '__Secure-' : '') . $cookieName . ($this->isHttps ? '_https' : '');
954
}
955
956
/**
0 commit comments