Skip to content

Commit 7475561

Browse files
Merge branch '6.4' into 7.3
* 6.4: fix session cookie options assertions on PHP 8.5 [String] Fix issues singular
2 parents 6877c12 + 6bc974c commit 7475561

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Tests/Session/Storage/NativeSessionStorageTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,10 @@ public function testCookieOptions()
195195
'cookie_samesite' => 'lax',
196196
];
197197

198+
if (\PHP_VERSION_ID >= 80500) {
199+
$options['cookie_partitioned'] = false;
200+
}
201+
198202
$this->getStorage($options);
199203
$temp = session_get_cookie_params();
200204
$gco = [];

0 commit comments

Comments
 (0)