mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 03:53:13 +00:00
11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\Search;
|
|
|
|
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext;
|
|
|
|
interface QueryPostProcessor
|
|
{
|
|
public function postProcessQuery($query, QueryContext $context);
|
|
}
|