![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Helper/Product/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Helper\Product; /** * @api * @since 100.0.2 */ class ConfigurationPool { /** * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager; /** * @var \Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface[] */ private $_instances = []; /** * @var array */ private $instancesByType = []; /** * @param \Magento\Framework\ObjectManagerInterface $objectManager * @param array $instancesByType */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, array $instancesByType) { $this->_objectManager = $objectManager; $this->instancesByType = $instancesByType; } /** * @param string $className * @return \Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface * @throws \LogicException */ public function get($className) { if (!isset($this->_instances[$className])) { /** @var \Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface $helperInstance */ $helperInstance = $this->_objectManager->get($className); if (false === $helperInstance instanceof \Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface ) { throw new \LogicException( "{$className} doesn't implement " . \Magento\Catalog\Helper\Product\Configuration\ConfigurationInterface::class ); } $this->_instances[$className] = $helperInstance; } return $this->_instances[$className]; } /** * @param string $productType * @return Configuration\ConfigurationInterface */ public function getByProductType($productType) { if (!isset($this->instancesByType[$productType])) { return $this->instancesByType['default']; } return $this->instancesByType[$productType]; } }