<?php /* * This file is part of the ONGR package. * * (c) NFQ Technologies UAB <info@nfq.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ONGR\ElasticsearchDSL\SearchEndpoint; use ONGR\ElasticsearchDSL\BuilderBag; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; /** * Search aggregations dsl endpoint. */ class AggregationsEndpoint extends AbstractSearchEndpoint { /** * Endpoint name */ CONST NAME = 'aggregations'; /** * {@inheritdoc} */ public function normalize(NormalizerInterface $normalizer, $format = null, array $context = []) { if (count($this->getAll()) > 0) { $output = []; foreach ($this->getAll() as $aggregation) { $output[] = $aggregation->toArray(); } } return $output; } }