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 | |
3 | namespace CirrusSearch\Parser; |
4 | |
5 | /** |
6 | * Registry of KeywordFeature |
7 | */ |
8 | interface KeywordRegistry { |
9 | |
10 | /** |
11 | * @return \CirrusSearch\Query\KeywordFeature[] |
12 | */ |
13 | public function getKeywords(); |
14 | } |