Completed
Branch master (537795)
by
unknown
33:10
created
includes/jobqueue/JobQueueGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
 	 * This pops a job off a queue as specified by $wgJobTypeConf and
180 180
 	 * updates the aggregate job queue information cache as needed.
181 181
 	 *
182
-	 * @param int|string $qtype JobQueueGroup::TYPE_* constant or job type string
182
+	 * @param integer $qtype JobQueueGroup::TYPE_* constant or job type string
183 183
 	 * @param int $flags Bitfield of JobQueueGroup::USE_* constants
184 184
 	 * @param array $blacklist List of job types to ignore
185 185
 	 * @return Job|bool Returns false on failure
Please login to merge, or discard this patch.
includes/jobqueue/jobs/ThumbnailRenderJob.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -77,6 +77,10 @@
 block discarded – undo
77 77
 		}
78 78
 	}
79 79
 
80
+	/**
81
+	 * @param File $file
82
+	 * @param string $thumbUrl
83
+	 */
80 84
 	protected function hitThumbUrl( $file, $transformParams, &$thumbUrl ) {
81 85
 		global $wgUploadThumbnailRenderHttpCustomHost, $wgUploadThumbnailRenderHttpCustomDomain;
82 86
 
Please login to merge, or discard this patch.
includes/libs/ArrayUtils.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,6 @@
 block discarded – undo
151 151
 	 * @since 1.23
152 152
 	 *
153 153
 	 * @param array $array1 The array to compare from
154
-	 * @param array $array2,... More arrays to compare against
155 154
 	 * @return array An array containing all the values from array1
156 155
 	 *               that are not present in any of the other arrays.
157 156
 	 */
Please login to merge, or discard this patch.
includes/libs/Cookie.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,6 +33,10 @@
 block discarded – undo
33 33
 	// TO IMPLEMENT? protected $version
34 34
 	// TO IMPLEMENT? protected $comment
35 35
 
36
+	/**
37
+	 * @param string $name
38
+	 * @param string $value
39
+	 */
36 40
 	function __construct( $name, $value, $attr ) {
37 41
 		$this->name = $name;
38 42
 		$this->set( $value, $attr );
Please login to merge, or discard this patch.
includes/libs/DeferredStringifier.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
 
36 36
 	/**
37 37
 	 * @param callable $callback Callback that gets called by __toString
38
-	 * @param mixed $param,... Parameters to the callback
39 38
 	 */
40 39
 	public function __construct( $callback /*...*/ ) {
41 40
 		$this->params = func_get_args();
Please login to merge, or discard this patch.
includes/libs/GenericArrayObject.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	 *
73 73
 	 * @since 1.20
74 74
 	 *
75
-	 * @param null|array $input
75
+	 * @param Site[] $input
76 76
 	 * @param int $flags
77 77
 	 * @param string $iterator_class
78 78
 	 */
Please login to merge, or discard this patch.
includes/libs/JavaScriptMinifier.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -608,6 +608,11 @@
 block discarded – undo
608 608
 		return $out;
609 609
 	}
610 610
 
611
+	/**
612
+	 * @param string $fullJavascript
613
+	 * @param integer $position
614
+	 * @param string $errorMsg
615
+	 */
611 616
 	static function parseError($fullJavascript, $position, $errorMsg) {
612 617
 		// TODO: Handle the error: trigger_error, throw exception, return false...
613 618
 		return false;
Please login to merge, or discard this patch.
includes/libs/jsminplus.php 1 patch
Doc Comments   +38 added lines patch added patch discarded remove patch
@@ -207,6 +207,9 @@  discard block
 block discarded – undo
207 207
 		return $instance->min($js, $filename);
208 208
 	}
209 209
 
210
+	/**
211
+	 * @param string $filename
212
+	 */
210 213
 	private function min($js, $filename)
211 214
 	{
212 215
 		try
@@ -222,6 +225,9 @@  discard block
 block discarded – undo
222 225
 		return false;
223 226
 	}
224 227
 
228
+	/**
229
+	 * @param JSNode $n
230
+	 */
225 231
 	public function parseTree($n, $noBlockGrouping = false)
226 232
 	{
227 233
 		$s = '';
@@ -660,6 +666,9 @@  discard block
 block discarded – undo
660 666
 		return $s;
661 667
 	}
662 668
 
669
+	/**
670
+	 * @param string $string
671
+	 */
663 672
 	private function isValidIdentifier($string)
664 673
 	{
665 674
 		return preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $string) && !in_array($string, $this->reserved);
@@ -724,12 +733,18 @@  discard block
 block discarded – undo
724 733
 		TOKEN_CONDCOMMENT_START => 1, TOKEN_CONDCOMMENT_END => 1
725 734
 	);
726 735
 
736
+	/**
737
+	 * @param JSMinPlus $minifier
738
+	 */
727 739
 	public function __construct($minifier=null)
728 740
 	{
729 741
 		$this->minifier = $minifier;
730 742
 		$this->t = new JSTokenizer();
731 743
 	}
732 744
 
745
+	/**
746
+	 * @param integer $l
747
+	 */
733 748
 	public function parse($s, $f, $l)
734 749
 	{
735 750
 		// initialize tokenizer
@@ -743,6 +758,9 @@  discard block
 block discarded – undo
743 758
 		return $n;
744 759
 	}
745 760
 
761
+	/**
762
+	 * @param JSCompilerContext $x
763
+	 */
746 764
 	private function Script($x)
747 765
 	{
748 766
 		$n = $this->Statements($x);
@@ -1106,6 +1124,10 @@  discard block
 block discarded – undo
1106 1124
 		return $n;
1107 1125
 	}
1108 1126
 
1127
+	/**
1128
+	 * @param boolean $requireName
1129
+	 * @param integer $functionForm
1130
+	 */
1109 1131
 	private function FunctionDefinition($x, $requireName, $functionForm)
1110 1132
 	{
1111 1133
 		$f = new JSNode($this->t);
@@ -1572,6 +1594,10 @@  discard block
 block discarded – undo
1572 1594
 	}
1573 1595
 
1574 1596
 	// Statement stack and nested statement handler.
1597
+
1598
+	/**
1599
+	 * @param JSNode $node
1600
+	 */
1575 1601
 	private function nest($x, $node, $end = false)
1576 1602
 	{
1577 1603
 		array_push($x->stmtStack, $node);
@@ -1636,6 +1662,9 @@  discard block
 block discarded – undo
1636 1662
 	public $funDecls = array();
1637 1663
 	public $varDecls = array();
1638 1664
 
1665
+	/**
1666
+	 * @param boolean $inFunction
1667
+	 */
1639 1668
 	public function __construct($inFunction)
1640 1669
 	{
1641 1670
 		$this->inFunction = $inFunction;
@@ -1654,6 +1683,9 @@  discard block
 block discarded – undo
1654 1683
 	public $funDecls = array();
1655 1684
 	public $varDecls = array();
1656 1685
 
1686
+	/**
1687
+	 * @param JSTokenizer $t
1688
+	 */
1657 1689
 	public function __construct($t, $type=0)
1658 1690
 	{
1659 1691
 		if ($token = $t->currentToken())
@@ -1765,6 +1797,9 @@  discard block
 block discarded – undo
1765 1797
 		$this->scanOperand = true;
1766 1798
 	}
1767 1799
 
1800
+	/**
1801
+	 * @param integer|null $chunksize
1802
+	 */
1768 1803
 	public function getInput($chunksize)
1769 1804
 	{
1770 1805
 		if ($chunksize)
@@ -2112,6 +2147,9 @@  discard block
 block discarded – undo
2112 2147
 		$this->tokenIndex = ($this->tokenIndex - 1) & 3;
2113 2148
 	}
2114 2149
 
2150
+	/**
2151
+	 * @param string $m
2152
+	 */
2115 2153
 	public function newSyntaxError($m)
2116 2154
 	{
2117 2155
 		return new Exception('Parse error: ' . $m . ' in file \'' . $this->filename . '\' on line ' . $this->lineno);
Please login to merge, or discard this patch.
includes/libs/MemoizedCallable.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -74,6 +74,7 @@
 block discarded – undo
74 74
 	 *
75 75
 	 * @param string $key
76 76
 	 * @param bool &$success
77
+	 * @param boolean $success
77 78
 	 */
78 79
 	protected function fetchResult( $key, &$success ) {
79 80
 		$success = false;
Please login to merge, or discard this patch.