From ef5f6cfd0f159864d8201f4dc492c319e9cf04e3 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 14 May 2010 20:51:16 +0000 Subject: [PATCH] fixed some doxygen warnings --- includes/search/SearchIBM_DB2.php | 8 ++++---- includes/search/SearchOracle.php | 4 ++-- includes/search/SearchPostgres.php | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/includes/search/SearchIBM_DB2.php b/includes/search/SearchIBM_DB2.php index d7587186c3..b32a20ce25 100644 --- a/includes/search/SearchIBM_DB2.php +++ b/includes/search/SearchIBM_DB2.php @@ -102,8 +102,8 @@ class SearchIBM_DB2 extends SearchEngine { /** * Construct the full SQL query to do the search. * The guts shoulds be constructed in queryMain() - * @param string $filteredTerm String - * @param bool $fulltext Boolean + * @param $filteredTerm String + * @param $fulltext Boolean */ function getQuery( $filteredTerm, $fulltext ) { return $this->queryLimit($this->queryMain($filteredTerm, $fulltext) . ' ' . @@ -125,8 +125,8 @@ class SearchIBM_DB2 extends SearchEngine { /** * Get the base part of the search query. * - * @param string $filteredTerm String - * @param bool $fulltext Boolean + * @param $filteredTerm String + * @param $fulltext Boolean * @return String */ function queryMain( $filteredTerm, $fulltext ) { diff --git a/includes/search/SearchOracle.php b/includes/search/SearchOracle.php index e4c5deee55..2c820e0548 100644 --- a/includes/search/SearchOracle.php +++ b/includes/search/SearchOracle.php @@ -248,8 +248,8 @@ class SearchOracle extends SearchEngine { * Update a search index record's title only. * Title should be pre-processed. * - * @param int $id - * @param string $title + * @param $id Integer + * @param $title String */ function updateTitle($id, $title) { $dbw = wfGetDB(DB_MASTER); diff --git a/includes/search/SearchPostgres.php b/includes/search/SearchPostgres.php index 0006fa82af..a38efa0f9e 100644 --- a/includes/search/SearchPostgres.php +++ b/includes/search/SearchPostgres.php @@ -129,8 +129,9 @@ class SearchPostgres extends SearchEngine { /** * Construct the full SQL query to do the search. - * @param $filteredTerm String + * @param $term String * @param $fulltext String + * @param $colname */ function searchQuery( $term, $fulltext, $colname ) { global $wgDBversion; -- 2.20.1