File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
lib/internal/Magento/Framework/Stdlib/Cookie Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details.
3
+ * Copyright 2025 Adobe
4
+ * All Rights Reserved.
5
+ *
6
+ * NOTICE: All information contained herein is, and remains
7
+ * the property of Adobe and its suppliers, if any. The intellectual
8
+ * and technical concepts contained herein are proprietary to Adobe
9
+ * and its suppliers and are protected by all applicable intellectual
10
+ * property laws, including trade secret and copyright laws.
11
+ * Dissemination of this information or reproduction of this material
12
+ * is strictly forbidden unless prior written permission is obtained
13
+ * from Adobe.
5
14
*/
6
15
declare (strict_types=1 );
7
16
@@ -31,16 +40,16 @@ class PhpCookieManager implements CookieManagerInterface
31
40
* RFC 2109 - Page 15
32
41
* http://www.ietf.org/rfc/rfc6265.txt
33
42
*/
34
- private const MAX_NUM_COOKIES = 50 ;
43
+ public const MAX_NUM_COOKIES = 50 ;
35
44
public const MAX_COOKIE_SIZE = 4096 ;
36
- private const EXPIRE_NOW_TIME = 1 ;
37
- private const EXPIRE_AT_END_OF_SESSION_TIME = 0 ;
45
+ public const EXPIRE_NOW_TIME = 1 ;
46
+ public const EXPIRE_AT_END_OF_SESSION_TIME = 0 ;
38
47
/**#@-*/
39
48
40
49
/**#@+
41
50
* Constant for metadata array key
42
51
*/
43
- private const KEY_EXPIRE_TIME = 'expiry ' ;
52
+ public const KEY_EXPIRE_TIME = 'expiry ' ;
44
53
/**#@-*/
45
54
46
55
/**
You can’t perform that action at this time.
0 commit comments