ConfigInterface.php 523 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Webapi\Model;
  8. /**
  9. * This class gives access to consolidated web API configuration from <Module_Name>/etc/webapi.xml files.
  10. *
  11. * @api
  12. * @since 100.2.4
  13. */
  14. interface ConfigInterface
  15. {
  16. /**
  17. * Return services loaded from cache if enabled or from files merged previously
  18. *
  19. * @return array
  20. * @since 100.2.4
  21. */
  22. public function getServices();
  23. }