SearcherRequestAdapterInterface
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getSuggestions() 0 1 ?
getAggregations() 0 1 ?
1
<?php
2
3
namespace Kunstmaan\NodeSearchBundle\PagerFanta\Adapter;
4
5
use Pagerfanta\Adapter\AdapterInterface;
6
7
interface SearcherRequestAdapterInterface extends AdapterInterface
8
{
9
    /**
10
     * @return mixed
11
     */
12
    public function getSuggestions();
13
14
    /**
15
     * @return array
16
     */
17
    public function getAggregations();
18
}
19