12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Configuration validation schema locator
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Config;
- /**
- * Config schema locator interface.
- *
- * @api
- * @since 100.0.2
- */
- interface SchemaLocatorInterface
- {
- /**
- * Get path to merged config schema
- *
- * @return string|null
- */
- public function getSchema();
- /**
- * Get path to per file validation schema
- *
- * @return string|null
- */
- public function getPerFileSchema();
- }
|