Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace CirrusSearch\Fallbacks;
4
5/**
6 * Interface for fallback methods that uses Elasticsearch suggest attached to the
7 * main query.
8 */
9interface ElasticSearchSuggestFallbackMethod {
10
11    /**
12     * List of suggest queries indexed by name
13     * @return array|null
14     */
15    public function getSuggestQueries();
16}