/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Di/MagentoDiFactory.php
26 строк
582 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2021 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Setup\Di; use Interop\Container\ContainerInterface; use Laminas\ServiceManager\Factory\FactoryInterface; use Magento\Framework\App\ObjectManager; /** * Instantiates the type via Magento object manager */ class MagentoDiFactory implements FactoryInterface { /** * @inheritdoc */ public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) { return ObjectManager::getInstance()->get($requestedName); } }