DesignResolverInterface.php 488 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. * Interface DesignResolverInterface
  9. * @api
  10. * @since 100.1.0
  11. */
  12. interface DesignResolverInterface extends FileResolverInterface
  13. {
  14. /**
  15. * Retrieve parent configs
  16. *
  17. * @param string $filename
  18. * @param string $scope
  19. * @return array
  20. * @since 100.1.0
  21. */
  22. public function getParents($filename, $scope);
  23. }