Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/framework/Search/Request/
Upload File :
Current File : /var/www/html/vendor/magento/framework/Search/Request/IndexScopeResolverInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\Search\Request;

/**
 * Resolve table name by provided dimensions. Scope Resolver must accept all dimensions that potentially can be used to
 * resolve table name, but certain implementation can filter them if needed
 */
interface IndexScopeResolverInterface
{
    /**
     * @param string $index
     * @param Dimension[] $dimensions
     * @return string
     */
    public function resolve($index, array $dimensions);
}