Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Asset/Bundle/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/View/Asset/Bundle/ConfigInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\View\Asset\Bundle;

use Magento\Framework\View\Asset\File\FallbackContext;

/**
 * Interface ConfigInterface
 * @deprecated 101.0.0
 * @see \Magento\Deploy\Config\BundleConfig
 */
interface ConfigInterface
{
    /**
     * @param FallbackContext $assetContext
     * @return bool
     */
    public function isSplit(FallbackContext $assetContext);

    /**
     * @param FallbackContext $assetContext
     * @return \Magento\Framework\Config\View
     */
    public function getConfig(FallbackContext $assetContext);

    /**
     * @param FallbackContext $assetContext
     * @return false|float|int|string
     */
    public function getPartSize(FallbackContext $assetContext);
}