mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00

- Quoted text do not hit the thesaurus anymore - getTextNodes() was misleading, renamed to getTermNodes()
16 lines
328 B
PHP
16 lines
328 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
|
|
|
|
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext;
|
|
|
|
abstract class Node
|
|
{
|
|
/**
|
|
* @return array The Elasticsearch formatted query
|
|
*/
|
|
abstract public function buildQuery(QueryContext $context);
|
|
|
|
abstract public function getTermNodes();
|
|
}
|