StoreConfigManagerInterface.php 530 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Store\Api;
  7. use Magento\Framework\Exception\NoSuchEntityException;
  8. use Magento\Store\Model\StoreIsInactiveException;
  9. /**
  10. * Store config manager interface
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. interface StoreConfigManagerInterface
  16. {
  17. /**
  18. * @param string[] $storeCodes
  19. * @return \Magento\Store\Api\Data\StoreConfigInterface[]
  20. */
  21. public function getStoreConfigs(array $storeCodes = null);
  22. }