| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | 
							- <?php
 
- /**
 
-  * Copyright © Magento, Inc. All rights reserved.
 
-  * See COPYING.txt for license details.
 
-  */
 
- namespace Magento\Framework\Search\Request\Config;
 
- /**
 
-  * Search Request schema locator
 
-  */
 
- class SchemaLocator implements \Magento\Framework\Config\SchemaLocatorInterface
 
- {
 
-     /**
 
-      * @var \Magento\Framework\Config\Dom\UrnResolver
 
-      */
 
-     protected $urnResolver;
 
-     /**
 
-      */
 
-     public function __construct(\Magento\Framework\Config\Dom\UrnResolver $urnResolver)
 
-     {
 
-         $this->urnResolver = $urnResolver;
 
-     }
 
-     /**
 
-      * Get path to merged config schema
 
-      *
 
-      * @return string
 
-      */
 
-     public function getSchema()
 
-     {
 
-         return $this->urnResolver->getRealPath('urn:magento:framework:Search/etc/search_request_merged.xsd');
 
-     }
 
-     /**
 
-      * Get path to pre file validation schema
 
-      *
 
-      * @return null
 
-      */
 
-     public function getPerFileSchema()
 
-     {
 
-         return $this->urnResolver->getRealPath('urn:magento:framework:Search/etc/search_request.xsd');
 
-     }
 
- }
 
 
  |