Completed
Branch master (7c4ad3)
by
unknown
31:59
created
includes/db/DatabasePostgres.php 1 patch
Doc Comments   +18 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,6 +168,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
includes/db/DatabaseSqlite.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
includes/db/DatabaseUtility.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
includes/db/DBConnRef.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
includes/deferred/CdnCacheUpdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
includes/deferred/SearchUpdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	 *
47 47
 	 * @param int $id Page id to update
48 48
 	 * @param Title|string $title Title of page to update
49
-	 * @param Content|string|bool $c Content of the page to update. Default: false.
49
+	 * @param Content|null $c Content of the page to update. Default: false.
50 50
 	 *  If a Content object, text will be gotten from it. String is for back-compat.
51 51
 	 *  Passing false tells the backend to just update the title, not the content
52 52
 	 */
Please login to merge, or discard this patch.
includes/deferred/SiteStatsUpdate.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -38,6 +38,12 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
includes/diff/DairikiDiff.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -590,6 +590,7 @@  discard block
 block discarded – undo
590 590
 	 * to be the "change".
591 591
 	 *
592 592
 	 * This is extracted verbatim from analyze.c (GNU diffutils-2.7).
593
+	 * @param string[] $lines
593 594
 	 */
594 595
 	private function shiftBoundaries( $lines, &$changed, $other_changed ) {
595 596
 		$i = 0;
@@ -750,7 +751,7 @@  discard block
 block discarded – undo
750 751
 	 *    $diff = new Diff($lines1, $lines2);
751 752
 	 *    $rev = $diff->reverse();
752 753
 	 *
753
-	 * @return Object A Diff object representing the inverse of the
754
+	 * @return Diff A Diff object representing the inverse of the
754 755
 	 *   original diff.
755 756
 	 */
756 757
 	public function reverse() {
Please login to merge, or discard this patch.
includes/diff/DifferenceEngine.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 * Constructor
105 105
 	 * @param IContextSource $context Context to use, anything else will be ignored
106 106
 	 * @param int $old Old ID we want to show and diff with.
107
-	 * @param string|int $new Either revision ID or 'prev' or 'next'. Default: 0.
107
+	 * @param integer $new Either revision ID or 'prev' or 'next'. Default: 0.
108 108
 	 * @param int $rcid Deprecated, no longer used!
109 109
 	 * @param bool $refreshCache If set, refreshes the diff cache
110 110
 	 * @param bool $unhide If set, allow viewing deleted revs
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 	}
161 161
 
162 162
 	/**
163
-	 * @return bool|int
163
+	 * @return integer
164 164
 	 */
165 165
 	public function getNewid() {
166 166
 		$this->loadRevisionIds();
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 	 *
175 175
 	 * @param int $id Revision ID
176 176
 	 *
177
-	 * @return mixed URL or false
177
+	 * @return string|false URL or false
178 178
 	 */
179 179
 	public function deletedLink( $id ) {
180 180
 		if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
 	 * @param string|bool $ntitle Header for new text or false
676 676
 	 * @param string $notice HTML between diff header and body
677 677
 	 *
678
-	 * @return mixed
678
+	 * @return false|string
679 679
 	 */
680 680
 	public function getDiff( $otitle, $ntitle, $notice = '' ) {
681 681
 		$body = $this->getDiffBody();
@@ -697,7 +697,7 @@  discard block
 block discarded – undo
697 697
 	/**
698 698
 	 * Get the diff table body, without header
699 699
 	 *
700
-	 * @return mixed (string/false)
700
+	 * @return false|string (string/false)
701 701
 	 */
702 702
 	public function getDiffBody() {
703 703
 		$this->mCacheHit = true;
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
 	 *
932 932
 	 * @param string $text
933 933
 	 *
934
-	 * @return mixed
934
+	 * @return string
935 935
 	 */
936 936
 	public function localiseLineNumbers( $text ) {
937 937
 		return preg_replace_callback(
Please login to merge, or discard this patch.