mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
19 lines
372 B
PHP
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'
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|