1234567891011121314151617181920 |
- <?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);
- }
|