Your IP : 127.0.0.1
<?php
/**
* Factory for Acl resource
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Acl;
use Magento\Framework\ObjectManagerInterface;
class AclResourceFactory
{
const RESOURCE_CLASS_NAME = \Magento\Framework\Acl\AclResource::class;
/**
* @var ObjectManagerInterface
*/
protected $_objectManager;
/**
* @param ObjectManagerInterface $objectManager
*/
public function __construct(ObjectManagerInterface $objectManager)
{
$this->_objectManager = $objectManager;
}
/**
* Return new ACL resource model
*
* @param array $arguments
* @return AclResource
*/
public function createResource(array $arguments = [])
{
return $this->_objectManager->create(self::RESOURCE_CLASS_NAME, $arguments);
}
}