| Current Path : /home/rtorresani/www/vendor/magento/framework/Search/Request/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Search/Request/IndexScopeResolverInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
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
*
* @api
*/
interface IndexScopeResolverInterface
{
/**
* @param string $index
* @param Dimension[] $dimensions
* @return string
*/
public function resolve($index, array $dimensions);
}