16 lines
359 B
PHP
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;
|
|
}
|