-
Simonas Šerlinskas authoredSimonas Šerlinskas authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
AggregationsEndpoint.php 939 B
<?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;
}
}