Skip to content

Commit 27a6925

Browse files
authored
StyleCI
1 parent 3537f34 commit 27a6925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ public function setCookies($cookies)
10891089
// convinience wrapper for session=false
10901090
// DevTools Protocol does not allow setting session=false directly, but it will be set to false if expires is set
10911091
if (!isset($cookie['expires']) && ($cookie['session'] ?? null) === false) {
1092-
$browserCookie['expires'] = time() + (1 * 60 * 60 * 24 * 365); // the max expire chromium allows, 365 days, tested on chromium 131.0.6778.139
1092+
$browserCookie['expires'] = \time() + (1 * 60 * 60 * 24 * 365); // the max expire chromium allows, 365 days, tested on chromium 131.0.6778.139
10931093
}
10941094

10951095
$browserCookies[] = $browserCookie;

0 commit comments

Comments
 (0)