Completed
Branch master (573807)
by
unknown
34:51
created
includes/TitleArrayFromResult.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
 
33 33
 	public $current;
34 34
 
35
+	/**
36
+	 * @param ResultWrapper $res
37
+	 */
35 38
 	function __construct( $res ) {
36 39
 		$this->res = $res;
37 40
 		$this->key = 0;
Please login to merge, or discard this patch.
includes/upload/UploadFromChunks.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -333,6 +333,9 @@
 block discarded – undo
333 333
 		return $storeStatus;
334 334
 	}
335 335
 
336
+	/**
337
+	 * @param integer $index
338
+	 */
336 339
 	private function getChunkFileKey( $index = null ) {
337 340
 		if ( $index === null ) {
338 341
 			$index = $this->getChunkIndex();
Please login to merge, or discard this patch.
includes/upload/UploadFromStash.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	private $repo;
41 41
 
42 42
 	/**
43
-	 * @param User|bool $user Default: false
43
+	 * @param User $user Default: false
44 44
 	 * @param UploadStash|bool $stash Default: false
45 45
 	 * @param FileRepo|bool $repo Default: false
46 46
 	 */
Please login to merge, or discard this patch.
includes/user/UserNamePrefixSearch.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	/**
31 31
 	 * Do a prefix search of user names and return a list of matching user names.
32 32
 	 *
33
-	 * @param string|User $audience The string 'public' or a user object to show the search for
33
+	 * @param string $audience The string 'public' or a user object to show the search for
34 34
 	 * @param string $search
35 35
 	 * @param int $limit
36 36
 	 * @param int $offset How many results to offset from the beginning
Please login to merge, or discard this patch.
includes/utils/AvroValidator.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -171,10 +171,16 @@
 block discarded – undo
171 171
 		return is_object( $datum ) ? get_class( $datum ) : gettype( $datum );
172 172
 	}
173 173
 
174
+	/**
175
+	 * @param string $expected
176
+	 */
174 177
 	public static function wrongType( $expected, $datum ) {
175 178
 		return "Expected $expected, but recieved " . self::typeOf( $datum );
176 179
 	}
177 180
 
181
+	/**
182
+	 * @param integer $datum
183
+	 */
178 184
 	public static function outOfRange( $min, $max, $datum ) {
179 185
 		return "Expected value between $min and $max, but recieved $datum";
180 186
 	}
Please login to merge, or discard this patch.
includes/utils/BatchRowIterator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	}
98 98
 
99 99
 	/**
100
-	 * @param array $condition Query conditions suitable for use with
100
+	 * @param array $conditions Query conditions suitable for use with
101 101
 	 *  IDatabase::select
102 102
 	 */
103 103
 	public function addConditions( array $conditions ) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	}
106 106
 
107 107
 	/**
108
-	 * @param array $condition Query join conditions suitable for use
108
+	 * @param array $conditions Query join conditions suitable for use
109 109
 	 *  with IDatabase::select
110 110
 	 */
111 111
 	public function addJoinConditions( array $conditions ) {
Please login to merge, or discard this patch.
includes/utils/UIDGenerator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -510,8 +510,8 @@  discard block
 block discarded – undo
510 510
 	 * Wait till the current timestamp reaches $time and return the current
511 511
 	 * timestamp. This returns false if it would have to wait more than 10ms.
512 512
 	 *
513
-	 * @param array $time Result of UIDGenerator::millitime()
514
-	 * @return array|bool UIDGenerator::millitime() result or false
513
+	 * @param integer[] $time Result of UIDGenerator::millitime()
514
+	 * @return resource UIDGenerator::millitime() result or false
515 515
 	 */
516 516
 	protected function timeWaitUntil( array $time ) {
517 517
 		do {
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
 	}
572 572
 
573 573
 	/**
574
-	 * @return array (current time in seconds, milliseconds since then)
574
+	 * @return integer[] (current time in seconds, milliseconds since then)
575 575
 	 */
576 576
 	protected static function millitime() {
577 577
 		list( $msec, $sec ) = explode( ' ', microtime() );
Please login to merge, or discard this patch.
includes/utils/ZipDirectoryReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 
185 185
 	/**
186 186
 	 * Throw an error, and log a debug message
187
-	 * @param mixed $code
187
+	 * @param string $code
188 188
 	 * @param string $debugMessage
189 189
 	 * @throws ZipDirectoryReaderError
190 190
 	 */
Please login to merge, or discard this patch.
includes/widget/ComplexNamespaceInputWidget.php 1 patch
Doc Comments   -14 removed lines patch added patch discarded remove patch
@@ -22,20 +22,6 @@
 block discarded – undo
22 22
 
23 23
 	/**
24 24
 	 * @param array $config Configuration options
25
-	 * @param array $config['namespace'] Configuration for the NamespaceInputWidget
26
-	 *  dropdown with list of namespaces
27
-	 * @param string $config['namespace']['includeAllValue'] If specified,
28
-	 *  add an "all namespaces" option to the dropdown, and use this as the input value for it
29
-	 * @param array|null $config['invert'] Configuration for the "invert selection"
30
-	 *  CheckboxInputWidget. If null, the checkbox will not be generated.
31
-	 * @param array|null $config['associated'] Configuration for the "include associated namespace"
32
-	 *  CheckboxInputWidget. If null, the checkbox will not be generated.
33
-	 * @param array $config['invertLabel'] Configuration for the FieldLayout with label
34
-	 *  wrapping the "invert selection" checkbox
35
-	 * @param string $config['invertLabel']['label'] Label text for the label
36
-	 * @param array $config['associatedLabel'] Configuration for the FieldLayout with label
37
-	 *  wrapping the "include associated namespace" checkbox
38
-	 * @param string $config['associatedLabel']['label'] Label text for the label
39 25
 	 */
40 26
 	public function __construct( array $config = array() ) {
41 27
 		// Configuration initialization
Please login to merge, or discard this patch.