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 11<?php
22/**
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.
514 */
615declare (strict_types=1 );
716
@@ -31,16 +40,16 @@ class PhpCookieManager implements CookieManagerInterface
3140 * RFC 2109 - Page 15
3241 * http://www.ietf.org/rfc/rfc6265.txt
3342 */
34- private const MAX_NUM_COOKIES = 50 ;
43+ public const MAX_NUM_COOKIES = 50 ;
3544 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 ;
3847 /**#@-*/
3948
4049 /**#@+
4150 * Constant for metadata array key
4251 */
43- private const KEY_EXPIRE_TIME = 'expiry ' ;
52+ public const KEY_EXPIRE_TIME = 'expiry ' ;
4453 /**#@-*/
4554
4655 /**
You can’t perform that action at this time.
0 commit comments