| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Layout/PageType/Config/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Layout/PageType/Config/SchemaLocator.php |
<?php
/**
* Locator for page_types XSD schemas.
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Layout\PageType\Config;
class SchemaLocator implements \Magento\Framework\Config\SchemaLocatorInterface
{
/**
* Path to corresponding XSD file with validation rules for config
*
* @var string
*/
protected $schema;
/**
* @param \Magento\Framework\Config\Dom\UrnResolver $urnResolver
*/
public function __construct(\Magento\Framework\Config\Dom\UrnResolver $urnResolver)
{
$this->schema = $urnResolver->getRealPath('urn:magento:framework:View/Layout/etc/page_types.xsd');
}
/**
* Get path to merged config schema
*
* @return string|null
*/
public function getSchema()
{
return $this->schema;
}
/**
* Get path to per file validation schema
*
* @return string|null
*/
public function getPerFileSchema()
{
return $this->schema;
}
}