/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Cache/InstanceFactory.php
39 строк
1003 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\App\Cache; class InstanceFactory { /** * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager; /** * @param \Magento\Framework\ObjectManagerInterface $objectManager */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager) { $this->_objectManager = $objectManager; } /** * Get cache instance model * * @param string $instanceName * @return \Magento\Framework\Cache\FrontendInterface * @throws \UnexpectedValueException */ public function get($instanceName) { $instance = $this->_objectManager->get($instanceName); if (!$instance instanceof \Magento\Framework\Cache\FrontendInterface) { throw new \UnexpectedValueException("Cache type class '{$instanceName}' has to be a cache frontend."); } return $instance; } }