/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Model/EntityRegistry.php
62 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Model; /** * Class EntityRegistry */ class EntityRegistry { /** * @var array */ protected $registry = []; /** * Register entity * * @param string $entityType * @param string $identifier * @param object $entity * @return void */ public function register($entityType, $identifier, $entity) { $this->registry[$entityType][$identifier] = $entity; } /** * Retrieve entity from storage * * @param string $entityType * @param string $identifier * @return null|object */ public function retrieve($entityType, $identifier) { if (isset($this->registry[$entityType][$identifier])) { return $this->registry[$entityType][$identifier]; } else { return null; } } /** * Remove entity from registry * * @param string $entityType * @param string $identifier * @return bool */ public function remove($entityType, $identifier) { if (isset($this->registry[$entityType][$identifier])) { unset($this->registry[$entityType][$identifier]); } return true; } }