/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Data/Collection/ModelFactory.php
42 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Data\Collection; /** * Model object factory */ class ModelFactory { /** * @var \Magento\Framework\ObjectManagerInterface */ protected $_objectManager; /** * @param \Magento\Framework\ObjectManagerInterface $objectManager */ public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager) { $this->_objectManager = $objectManager; } /** * Create new model object * * @param string $model * @param array $data * @throws \InvalidArgumentException * @return \Magento\Framework\Model\AbstractModel */ public function create($model, array $data = []) { $modelInstance = $this->_objectManager->create($model, $data); if (false == $modelInstance instanceof \Magento\Framework\Model\AbstractModel) { throw new \InvalidArgumentException($model . ' is not instance of \Magento\Framework\Model\AbstractModel'); } return $modelInstance; } }