ConfigLoaderInterface.php 405 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\ObjectManager;
  7. /**
  8. * Interface \Magento\Framework\ObjectManager\ConfigLoaderInterface
  9. *
  10. */
  11. interface ConfigLoaderInterface
  12. {
  13. /**
  14. * Load modules DI configuration
  15. *
  16. * @param string $area
  17. * @return array
  18. */
  19. public function load($area);
  20. }