1 | <?php |
||
6 | class SqlSearchResultSet extends SearchResultSet { |
||
7 | protected $resultSet; |
||
8 | protected $terms; |
||
9 | protected $totalHits; |
||
10 | |||
11 | function __construct( ResultWrapper $resultSet, $terms, $total = null ) { |
||
16 | |||
17 | function termMatches() { |
||
20 | |||
21 | function numRows() { |
||
28 | |||
29 | function next() { |
||
43 | |||
44 | function rewind() { |
||
49 | |||
50 | function free() { |
||
57 | |||
58 | function getTotalHits() { |
||
66 | } |
||
67 |