1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Webapi\Model;
- /**
- * This class gives access to consolidated web API configuration from <Module_Name>/etc/webapi.xml files.
- *
- * @api
- * @since 100.2.4
- */
- interface ConfigInterface
- {
- /**
- * Return services loaded from cache if enabled or from files merged previously
- *
- * @return array
- * @since 100.2.4
- */
- public function getServices();
- }
|