| Current Path : /home/rtorresani/www/vendor/magento/framework/Search/Adapter/Aggregation/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/Search/Adapter/Aggregation/AggregationResolver.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Search\Adapter\Aggregation;
use Magento\Framework\Search\RequestInterface;
class AggregationResolver implements AggregationResolverInterface
{
/**
* @var AggregationResolverInterface[]
*/
private $resolvers;
/**
* @param AggregationResolverInterface[] $resolvers
*/
public function __construct(array $resolvers = [])
{
$this->resolvers = $resolvers;
}
/**
* {@inheritdoc}
*/
public function resolve(RequestInterface $request, array $documentIds)
{
$aggregations = isset($this->resolvers[$request->getIndex()])
? $this->resolvers[$request->getIndex()]->resolve($request, $documentIds)
: $request->getAggregation();
return $aggregations;
}
}