/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Session/Storage.php
78 строк
2 KB
Rajesh Kumar
AC-15620: Ensure PHP 8.5 Compatibility with adobe commerce
12 янв 2026, 14:28
12 янв 2026, 14:28
491c19a
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\Session; use Magento\Framework\ObjectManager\ResetAfterRequestInterface; /** * Default session storage */ class Storage extends \Magento\Framework\DataObject implements StorageInterface, ResetAfterRequestInterface { /** * Namespace of storage * * @var string */ protected $namespace; /** * @inheritDoc */ public function _resetState(): void { $this->_data = []; } /** * Constructor * * @param string $namespace * @param array $data */ public function __construct($namespace = 'default', array $data = []) { $this->namespace = $namespace; parent::__construct($data); } /** * @inheritdoc */ public function init(array $data) { $namespace = $this->getNamespace() ?? ''; if (isset($data[$namespace])) { $this->setData($data[$namespace]); } $_SESSION[$namespace] = & $this->_data; return $this; } /** * @inheritdoc */ public function getNamespace() { return $this->namespace; } /** * Additional get data with clear mode * * @param string $key * @param bool $clear * @return mixed */ public function getData($key = '', $clear = false) { $data = parent::getData($key); if ($clear && isset($this->_data[$key])) { unset($this->_data[$key]); } return $data; } }