FileResolverInterface.php 485 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Config;
  7. /**
  8. * File resolver interface.
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface FileResolverInterface
  14. {
  15. /**
  16. * Retrieve the list of configuration files with given name that relate to specified scope
  17. *
  18. * @param string $filename
  19. * @param string $scope
  20. * @return array
  21. */
  22. public function get($filename, $scope);
  23. }