@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | * - false to disable debugging |
185 | 185 | * - omitted or null to do nothing |
186 | 186 | * |
187 | - * @return bool|null Previous value of the flag |
|
187 | + * @return boolean Previous value of the flag |
|
188 | 188 | */ |
189 | 189 | public function debug( $debug = null ) { |
190 | 190 | return wfSetBit( $this->mFlags, DBO_DEBUG, $debug ); |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | } |
636 | 636 | |
637 | 637 | /** |
638 | - * @return bool|string |
|
638 | + * @return string|false |
|
639 | 639 | */ |
640 | 640 | protected function restoreErrorHandler() { |
641 | 641 | restore_error_handler(); |
@@ -1080,7 +1080,7 @@ discard block |
||
1080 | 1080 | * |
1081 | 1081 | * @param array $options Associative array of options to be turned into |
1082 | 1082 | * an SQL query, valid keys are listed in the function. |
1083 | - * @return array |
|
1083 | + * @return string[] |
|
1084 | 1084 | * @see DatabaseBase::select() |
1085 | 1085 | */ |
1086 | 1086 | public function makeSelectOptions( $options ) { |
@@ -2921,8 +2921,8 @@ discard block |
||
2921 | 2921 | * on object's error ignore settings). |
2922 | 2922 | * |
2923 | 2923 | * @param string $filename File name to open |
2924 | - * @param bool|callable $lineCallback Optional function called before reading each line |
|
2925 | - * @param bool|callable $resultCallback Optional function called for each MySQL result |
|
2924 | + * @param boolean $lineCallback Optional function called before reading each line |
|
2925 | + * @param boolean $resultCallback Optional function called for each MySQL result |
|
2926 | 2926 | * @param bool|string $fname Calling function name or false if name should be |
2927 | 2927 | * generated dynamically using $filename |
2928 | 2928 | * @param bool|callable $inputCallback Optional function called for each |
@@ -3235,7 +3235,7 @@ discard block |
||
3235 | 3235 | } |
3236 | 3236 | |
3237 | 3237 | /** |
3238 | - * @return string|bool Reason this DB is read-only or false if it is not |
|
3238 | + * @return string|false Reason this DB is read-only or false if it is not |
|
3239 | 3239 | */ |
3240 | 3240 | protected function getReadOnlyReason() { |
3241 | 3241 | $reason = $this->getLBInfo( 'readOnlyReason' ); |
@@ -328,7 +328,7 @@ |
||
328 | 328 | /** |
329 | 329 | * @param DatabaseBase $db |
330 | 330 | * @param string $error |
331 | - * @param int|string $errno |
|
331 | + * @param integer $errno |
|
332 | 332 | * @param string $sql |
333 | 333 | * @param string $fname |
334 | 334 | */ |
@@ -369,8 +369,8 @@ discard block |
||
369 | 369 | /** |
370 | 370 | * SELECT wrapper |
371 | 371 | * |
372 | - * @param mixed $table Array or string, table name(s) (prefix auto-added) |
|
373 | - * @param mixed $vars Array or string, field name(s) to be retrieved |
|
372 | + * @param string $table Array or string, table name(s) (prefix auto-added) |
|
373 | + * @param string $vars Array or string, field name(s) to be retrieved |
|
374 | 374 | * @param mixed $conds Array or string, condition(s) for WHERE |
375 | 375 | * @param string $fname Calling function name (use __METHOD__) for logs/profiling |
376 | 376 | * @param array $options Associative array of options (e.g. |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | * code for list of supported stuff |
379 | 379 | * @param array $join_conds Associative array of table join conditions |
380 | 380 | * (optional) (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') ) |
381 | - * @return mixed Database result resource (feed to Database::fetchObject |
|
381 | + * @return MssqlResultWrapper Database result resource (feed to Database::fetchObject |
|
382 | 382 | * or whatever), or false on failure |
383 | 383 | * @throws DBQueryError |
384 | 384 | * @throws DBUnexpectedError |
@@ -716,7 +716,7 @@ discard block |
||
716 | 716 | * @param string $fname |
717 | 717 | * @param array $insertOptions |
718 | 718 | * @param array $selectOptions |
719 | - * @return null|ResultWrapper |
|
719 | + * @return ResultWrapper |
|
720 | 720 | * @throws Exception |
721 | 721 | */ |
722 | 722 | public function insertSelect( $destTable, $srcTable, $varMap, $conds, $fname = __METHOD__, |
@@ -860,7 +860,7 @@ discard block |
||
860 | 860 | * |
861 | 861 | * @param string $sql SQL query we will append the limit too |
862 | 862 | * @param int $limit The SQL limit |
863 | - * @param bool|int $offset The SQL offset (default false) |
|
863 | + * @param string|false $offset The SQL offset (default false) |
|
864 | 864 | * @return array|string |
865 | 865 | * @throws DBUnexpectedError |
866 | 866 | */ |
@@ -1149,7 +1149,7 @@ discard block |
||
1149 | 1149 | /** |
1150 | 1150 | * @param array $options An associative array of options to be turned into |
1151 | 1151 | * an SQL query, valid keys are listed in the function. |
1152 | - * @return array |
|
1152 | + * @return string[] |
|
1153 | 1153 | */ |
1154 | 1154 | public function makeSelectOptions( $options ) { |
1155 | 1155 | $tailOpts = ''; |
@@ -168,6 +168,11 @@ discard block |
||
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
171 | + /** |
|
172 | + * @param string $keyword |
|
173 | + * @param string $msg_ok |
|
174 | + * @param string $msg_failed |
|
175 | + */ |
|
171 | 176 | protected function query( $keyword, $msg_ok, $msg_failed ) { |
172 | 177 | if ( $this->dbw->doQuery( $keyword . " " . $this->id ) !== false ) { |
173 | 178 | } else { |
@@ -259,6 +264,9 @@ discard block |
||
259 | 264 | return true; |
260 | 265 | } |
261 | 266 | |
267 | + /** |
|
268 | + * @param string $name |
|
269 | + */ |
|
262 | 270 | function hasConstraint( $name ) { |
263 | 271 | $sql = "SELECT 1 FROM pg_catalog.pg_constraint c, pg_catalog.pg_namespace n " . |
264 | 272 | "WHERE c.connamespace = n.oid AND conname = '" . |
@@ -550,7 +558,7 @@ discard block |
||
550 | 558 | * Return the result of the last call to nextSequenceValue(); |
551 | 559 | * This must be called after nextSequenceValue(). |
552 | 560 | * |
553 | - * @return int|null |
|
561 | + * @return integer |
|
554 | 562 | */ |
555 | 563 | function insertId() { |
556 | 564 | return $this->mInsertId; |
@@ -1310,6 +1318,10 @@ discard block |
||
1310 | 1318 | return $this->relationExists( $sequence, 'S', $schema ); |
1311 | 1319 | } |
1312 | 1320 | |
1321 | + /** |
|
1322 | + * @param string $table |
|
1323 | + * @param string $trigger |
|
1324 | + */ |
|
1313 | 1325 | function triggerExists( $table, $trigger ) { |
1314 | 1326 | $q = <<<SQL |
1315 | 1327 | SELECT 1 FROM pg_class, pg_namespace, pg_trigger |
@@ -1333,6 +1345,10 @@ discard block |
||
1333 | 1345 | return $rows; |
1334 | 1346 | } |
1335 | 1347 | |
1348 | + /** |
|
1349 | + * @param string $table |
|
1350 | + * @param string $rule |
|
1351 | + */ |
|
1336 | 1352 | function ruleExists( $table, $rule ) { |
1337 | 1353 | $exists = $this->selectField( 'pg_rules', 'rulename', |
1338 | 1354 | array( |
@@ -1475,7 +1491,7 @@ discard block |
||
1475 | 1491 | * |
1476 | 1492 | * @param array $options An associative array of options to be turned into |
1477 | 1493 | * an SQL query, valid keys are listed in the function. |
1478 | - * @return array |
|
1494 | + * @return string[] |
|
1479 | 1495 | */ |
1480 | 1496 | function makeSelectOptions( $options ) { |
1481 | 1497 | $preLimitTail = $postLimitTail = ''; |
@@ -551,7 +551,7 @@ discard block |
||
551 | 551 | * Filter the options used in SELECT statements |
552 | 552 | * |
553 | 553 | * @param array $options |
554 | - * @return array |
|
554 | + * @return string[] |
|
555 | 555 | */ |
556 | 556 | function makeSelectOptions( $options ) { |
557 | 557 | foreach ( $options as $k => $v ) { |
@@ -1048,6 +1048,9 @@ discard block |
||
1048 | 1048 | class SQLiteField implements Field { |
1049 | 1049 | private $info, $tableName; |
1050 | 1050 | |
1051 | + /** |
|
1052 | + * @param string $tableName |
|
1053 | + */ |
|
1051 | 1054 | function __construct( $info, $tableName ) { |
1052 | 1055 | $this->info = $info; |
1053 | 1056 | $this->tableName = $tableName; |
@@ -31,6 +31,9 @@ |
||
31 | 31 | /** @var string */ |
32 | 32 | protected $mData; |
33 | 33 | |
34 | + /** |
|
35 | + * @param string $data |
|
36 | + */ |
|
34 | 37 | function __construct( $data ) { |
35 | 38 | $this->mData = $data; |
36 | 39 | } |
@@ -30,6 +30,9 @@ |
||
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | + /** |
|
34 | + * @param string $name |
|
35 | + */ |
|
33 | 36 | function __call( $name, array $arguments ) { |
34 | 37 | if ( $this->conn === null ) { |
35 | 38 | list( $db, $groups, $wiki ) = $this->params; |
@@ -48,7 +48,7 @@ |
||
48 | 48 | /** |
49 | 49 | * Create an update object from an array of Title objects, or a TitleArray object |
50 | 50 | * |
51 | - * @param Traversable|array $titles |
|
51 | + * @param TitleArrayFromResult|null $titles |
|
52 | 52 | * @param string[] $urlArr |
53 | 53 | * @return CdnCacheUpdate |
54 | 54 | */ |
@@ -38,6 +38,12 @@ |
||
38 | 38 | protected $images = 0; |
39 | 39 | |
40 | 40 | // @todo deprecate this constructor |
41 | + |
|
42 | + /** |
|
43 | + * @param integer $views |
|
44 | + * @param integer $edits |
|
45 | + * @param integer $good |
|
46 | + */ |
|
41 | 47 | function __construct( $views, $edits, $good, $pages = 0, $users = 0 ) { |
42 | 48 | $this->edits = $edits; |
43 | 49 | $this->articles = $good; |