mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
13 lines
326 B
PHP
13 lines
326 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST\KeyValue;
|
|
|
|
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext;
|
|
|
|
interface Key
|
|
{
|
|
public function getIndexField(QueryContext $context, $raw = false);
|
|
public function isValueCompatible($value, QueryContext $context);
|
|
public function __toString();
|
|
}
|