MediaWiki REL1_31
SearchNearMatchResultSet.php
Go to the documentation of this file.
1<?php
6 private $fetched = false;
7
11 public function __construct( $match ) {
12 $this->result = $match;
13 }
14
15 public function numRows() {
16 return $this->result ? 1 : 0;
17 }
18
19 public function next() {
20 if ( $this->fetched || !$this->result ) {
21 return false;
22 }
23 $this->fetched = true;
24 return SearchResult::newFromTitle( $this->result, $this );
25 }
26
27 public function rewind() {
28 $this->fetched = false;
29 }
30}
A SearchResultSet wrapper for SearchNearMatcher.
rewind()
Rewind result set back to beginning.
next()
Fetches next search result, or false.