![]() 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/framework/ObjectManager/Factory/Dynamic/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\ObjectManager\Factory\Dynamic; class Production extends \Magento\Framework\ObjectManager\Factory\AbstractFactory { /** * Resolve constructor arguments * * @param string $requestedType * @param array $parameters * @param array $arguments * * @return array * * @throws \UnexpectedValueException * @throws \BadMethodCallException */ protected function _resolveArguments($requestedType, array $parameters, array $arguments = []) { $resolvedArguments = []; $arguments = count($arguments) ? array_replace($this->config->getArguments($requestedType), $arguments) : $this->config->getArguments($requestedType); foreach ($parameters as $parameter) { list($paramName, $paramType, $paramRequired, $paramDefault) = $parameter; $argument = null; if (!empty($arguments) && (isset($arguments[$paramName]) || array_key_exists($paramName, $arguments))) { $argument = $arguments[$paramName]; } elseif ($paramRequired) { $argument = ['instance' => $paramType]; } else { $argument = $paramDefault; } $this->resolveArgument($argument, $paramType, $paramDefault, $paramName, $requestedType); $resolvedArguments[] = $argument; } return $resolvedArguments; } /** * Create instance with call time arguments * * @param string $requestedType * @param array $arguments * * @return object * * @throws \Exception */ public function create($requestedType, array $arguments = []) { $type = $this->config->getInstanceType($requestedType); $parameters = $this->definitions->getParameters($type); if ($parameters == null) { return new $type(); } $args = $this->_resolveArguments($requestedType, $parameters, $arguments); return $this->createObject($type, $args); } }