Skip to content
Snippets Groups Projects
BoolQueryCollection.php 424 B
Newer Older
Pavel's avatar
Pavel committed
<?php

namespace IQDEV\ElasticSearch\Search\BoolQuery;

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
    {
Pavel's avatar
Pavel committed
        return array_map(static fn (Esable $facet) => $facet->es(), $this->toArray());
Pavel's avatar
Pavel committed
    }
Pavel's avatar
Pavel committed
}