Skip to content
Snippets Groups Projects
NewFacet.php 210 B
Newer Older
Nikita Chernykh's avatar
Nikita Chernykh committed
<?php

declare(strict_types=1);

namespace IQDEV\ElasticSearch\Facet;

class NewFacet implements Facetable
{
    protected FacetTypeEnum $type;

    public function es(): array
    {
        return [];
    }
}