/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/ActionFactory.php
46 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Action Factory * * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\App; /** * @api * @since 100.0.2 */ class ActionFactory { /** * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager; /** * @param \Magento\Framework\ObjectManagerInterface $objectManager */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager) { $this->_objectManager = $objectManager; } /** * Create action * * @param string $actionName * @return ActionInterface * @throws \InvalidArgumentException */ public function create($actionName) { if (!is_subclass_of($actionName, \Magento\Framework\App\ActionInterface::class)) { throw new \InvalidArgumentException( 'The action name provided is invalid. Verify the action name and try again.' ); } return $this->_objectManager->create($actionName); } }