DynamicConfigInterface.php 434 B

1234567891011121314151617181920
  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\DynamicConfigInterface
  9. *
  10. */
  11. interface DynamicConfigInterface
  12. {
  13. /**
  14. * Map application initialization params to Object Manager configuration format
  15. *
  16. * @return array
  17. */
  18. public function getConfiguration();
  19. }