Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AclFactory.php
Go to the documentation of this file.
1 <?php
8 namespace Magento\Framework;
9 
11 {
17  private $_objectManager;
18 
23  {
24  $this->_objectManager = $objectManager;
25  }
26 
32  public function create()
33  {
34  return $this->_objectManager->create(Acl::class);
35  }
36 }
$objectManager
Definition: bootstrap.php:17
__construct(\Magento\Framework\ObjectManagerInterface $objectManager)
Definition: AclFactory.php:22