X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fsearch%2FSearchExactMatchRescorer.php;h=354b3909dcd7911d451af09b810c1d399ea48704;hb=935ccd6335bf9e090ef6a73ca2f425c8809c5b9d;hp=40cfe3930581ccfde22fd69873dba7b09b770a4a;hpb=61898ad28ed69c5b391eb43e0db9386279b9612c;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/search/SearchExactMatchRescorer.php b/includes/search/SearchExactMatchRescorer.php index 40cfe39305..354b3909dc 100644 --- a/includes/search/SearchExactMatchRescorer.php +++ b/includes/search/SearchExactMatchRescorer.php @@ -34,9 +34,9 @@ class SearchExactMatchRescorer { * may sort based on other algorithms that may cause the exact title match * to not be in the results or be lower down the list. * @param string $search the query - * @param int[] $namespaces the namespaces - * @param int $limit the max number of results to return + * @param int[] $namespaces * @param string[] $srchres results + * @param int $limit the max number of results to return * @return string[] munged results */ public function rescore( $search, $namespaces, $srchres, $limit ) { @@ -96,11 +96,11 @@ class SearchExactMatchRescorer { } /** - * @param string[] $titles as strings + * @param string[] $titles * @return array redirect target prefixedText to index of title in titles * that is a redirect to it. */ - private function redirectTargetsToRedirect( $titles ) { + private function redirectTargetsToRedirect( array $titles ) { $result = []; foreach ( $titles as $key => $titleText ) { $title = Title::newFromText( $titleText ); @@ -122,7 +122,7 @@ class SearchExactMatchRescorer { * @param int $key key to pull to the front * @return array $array with the item at $key pulled to the front */ - private function pullFront( $key, $array ) { + private function pullFront( $key, array $array ) { $cut = array_splice( $array, $key, 1 ); array_unshift( $array, $cut[0] ); return $array;