mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
17 lines
340 B
PHP
17 lines
340 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
|
|
|
|
abstract class Node
|
|
{
|
|
/**
|
|
* @return array The Elasticsearch formatted query
|
|
*/
|
|
abstract public function getQuery();
|
|
|
|
/**
|
|
* @return bool Tell if the node and it's child are full-text queries only
|
|
*/
|
|
abstract public function isFullTextOnly();
|
|
}
|