Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Asset/
Upload File :
Current File : //home/rtorresani/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);
}