| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Xsd/Media/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Xsd/Media/TypeDataExtractorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\View\Xsd\Media;
/**
* Interface that encapsulates complexity of expression computation
*
* @api
*/
interface TypeDataExtractorInterface
{
/**
* Extract media configuration data from the DOM structure
*
* @param \DOMElement $childNode
* @param string $mediaParentTag
* @return mixed
*/
public function process(\DOMElement $childNode, $mediaParentTag);
}