QueryHandlerInterface::handle()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
/**
3
 *
4
 * @author Mihkel Viilveer <[email protected]>
5
 * @date 26.09.2014
6
 */
7
8
namespace opus\elastic\search;
9
10
use Elastica\Param;
11
12
/**
13
 * Interface QueryHandlerInterface
14
 *
15
 * @package opus\elastic\search
16
 */
17
interface QueryHandlerInterface
18
{
19
    /**
20
     * Adds handle and returns query and filter
21
     * @param $config
22
     * @return Param{]
0 ignored issues
show
Documentation introduced by
The doc-type Param{] could not be parsed: Unknown type name "Param{" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
23
     */
24
    public function handle($config);
25
26
    /**
27
     * Adds special query case to elasticsearch request
28
     * @return mixed
29
     */
30
    public function addHandle();
31
}