Files
2025-08-02 16:30:27 +02:00

16 lines
359 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\CatalogElasticBundle\Contracts;
interface Identifiable
{
/**
* @return string TaggedIterator index - aggregation / filter name
*
* @see https://symfony.com/doc/current/service_container/tags.html#tagged-services-with-index
*/
public static function filterIdentifier(): string;
}