r66439 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r66438‎ | r66439 | r66440 >
Date:20:51, 14 May 2010
Author:ialex
Status:ok
Tags:
Comment:
fixed some doxygen warnings
Modified paths:
  • /trunk/phase3/includes/search/SearchIBM_DB2.php (modified) (history)
  • /trunk/phase3/includes/search/SearchOracle.php (modified) (history)
  • /trunk/phase3/includes/search/SearchPostgres.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/search/SearchOracle.php
@@ -248,8 +248,8 @@
249249 * Update a search index record's title only.
250250 * Title should be pre-processed.
251251 *
252 - * @param int $id
253 - * @param string $title
 252+ * @param $id Integer
 253+ * @param $title String
254254 */
255255 function updateTitle($id, $title) {
256256 $dbw = wfGetDB(DB_MASTER);
Index: trunk/phase3/includes/search/SearchPostgres.php
@@ -129,8 +129,9 @@
130130
131131 /**
132132 * Construct the full SQL query to do the search.
133 - * @param $filteredTerm String
 133+ * @param $term String
134134 * @param $fulltext String
 135+ * @param $colname
135136 */
136137 function searchQuery( $term, $fulltext, $colname ) {
137138 global $wgDBversion;
Index: trunk/phase3/includes/search/SearchIBM_DB2.php
@@ -102,8 +102,8 @@
103103 /**
104104 * Construct the full SQL query to do the search.
105105 * The guts shoulds be constructed in queryMain()
106 - * @param string $filteredTerm String
107 - * @param bool $fulltext Boolean
 106+ * @param $filteredTerm String
 107+ * @param $fulltext Boolean
108108 */
109109 function getQuery( $filteredTerm, $fulltext ) {
110110 return $this->queryLimit($this->queryMain($filteredTerm, $fulltext) . ' ' .
@@ -125,8 +125,8 @@
126126 /**
127127 * Get the base part of the search query.
128128 *
129 - * @param string $filteredTerm String
130 - * @param bool $fulltext Boolean
 129+ * @param $filteredTerm String
 130+ * @param $fulltext Boolean
131131 * @return String
132132 */
133133 function queryMain( $filteredTerm, $fulltext ) {

Status & tagging log