Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
RootResource.php
Go to the documentation of this file.
1 <?php
8 namespace Magento\Framework\Acl;
9 
15 {
21  protected $_identifier;
22 
26  public function __construct($identifier)
27  {
28  $this->_identifier = $identifier;
29  }
30 
36  public function getId()
37  {
38  return $this->_identifier;
39  }
40 }