Expose $wgMaxArticleSize in siteinfo query api
[mediawiki.git] / includes / search / SearchNearMatchResultSet.php
blob6d667074ee242ae4d7b6eb9cc07fb5c3ea31e2cf
1 <?php
2 /**
3 * A SearchResultSet wrapper for SearchNearMatcher
4 */
5 class SearchNearMatchResultSet extends SearchResultSet {
6 private $fetched = false;
8 /**
9 * @param Title|null $match Title if matched, else null
11 public function __construct( $match ) {
12 $this->result = $match;
15 public function numRows() {
16 return $this->result ? 1 : 0;
19 public function next() {
20 if ( $this->fetched || !$this->result ) {
21 return false;
23 $this->fetched = true;
24 return SearchResult::newFromTitle( $this->result );
27 public function rewind() {
28 $this->fetched = false;