| Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/framework/View/Asset/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/magento/framework/View/Asset/MergeStrategyInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Asset;
/**
* Interface for merging multiple assets into one
*
* @api
*/
interface MergeStrategyInterface
{
/**
* Merge assets into one
*
* The $resultAsset may be used to persist result
*
* @param MergeableInterface[] $assetsToMerge
* @param LocalInterface $resultAsset
* @return void
*/
public function merge(array $assetsToMerge, LocalInterface $resultAsset);
}