Conditions | 6 |
Paths | 5 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 42 |
Changes | 0 |
1 | <?php |
||
51 | public function next() { |
||
52 | |||
53 | if ( $this->searchMatches === false || $this->searchMatches === [] ) { |
||
54 | return false; |
||
55 | } |
||
56 | |||
57 | if ( ( list( $key, $match ) = each( $this->searchMatches ) ) !== false ) { |
||
58 | |||
59 | if ( $match instanceOf SearchResult ) { |
||
60 | return $match; |
||
61 | } |
||
62 | |||
63 | if ( $match instanceOf Title ) { |
||
64 | return SearchResult::newFromTitle( $match ); |
||
65 | } |
||
66 | } |
||
67 | |||
68 | return false; |
||
69 | } |
||
70 | |||
112 |