Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ArgumentsResolverFactory.php
Go to the documentation of this file.
1 <?php
9 
11 {
17  protected $_objectManager;
18 
24  public function __construct(
25  \Magento\Framework\ObjectManagerInterface $objectManager
26  ) {
27  $this->_objectManager = $objectManager;
28  }
29 
36  public function create(\Magento\Framework\ObjectManager\ConfigInterface $diContainerConfig)
37  {
38  return new ArgumentsResolver($diContainerConfig);
39  }
40 }
create(\Magento\Framework\ObjectManager\ConfigInterface $diContainerConfig)
$objectManager
Definition: bootstrap.php:17
__construct(\Magento\Framework\ObjectManagerInterface $objectManager)