DefaultLoader.php 549 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Default acl loader. Used as a fallback when no loaders were defined. Doesn't change ACL object passed.
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Acl\Loader;
  9. class DefaultLoader implements \Magento\Framework\Acl\LoaderInterface
  10. {
  11. /**
  12. * Don't do anything to acl object.
  13. *
  14. * @param \Magento\Framework\Acl $acl
  15. * @return void
  16. */
  17. public function populateAcl(\Magento\Framework\Acl $acl)
  18. {
  19. // Do nothing
  20. }
  21. }