Something went wrong on our end
Forked from
Pavel / search-es
28 commits behind the upstream repository.
BoolQueryCollection.php 417 B
<?php
namespace IQDEV\ElasticSearch\Search\Aggs;
use IQDEV\ElasticSearch\Esable;
use Ramsey\Collection\AbstractCollection;
final class BoolQueryCollection extends AbstractCollection implements Esable
{
public function getType(): string
{
return Esable::class;
}
public function es(): array
{
return array_map(static fn(Esable $facet) => $facet->es(), $this->toArray());
}
}