Files
Phraseanet/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/QuotedTextNode.php
2014-08-25 10:25:38 +02:00

19 lines
372 B
PHP

<?php
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
class QuotedTextNode extends TextNode
{
public function getQuery($field = '_all')
{
return array(
'match' => array(
$field => array(
'query' => $this->text,
'operator' => 'and'
)
)
);
}
}