1 | <?php |
||
11 | class RawPartialResults implements PartialResultsInterface |
||
12 | { |
||
13 | protected $resultSet; |
||
14 | |||
15 | /** |
||
16 | * @param ResultSet $resultSet |
||
17 | */ |
||
18 | public function __construct(ResultSet $resultSet) |
||
22 | |||
23 | /** |
||
24 | * {@inheritDoc} |
||
25 | */ |
||
26 | public function toArray() |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | public function getTotalHits() |
||
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | public function getAggregations() |
||
52 | } |
||
53 |