Completed
Branch master (3e9d3e)
by
unknown
35:58
created
includes/libs/StatusValue.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * Factory function for fatal errors
59 59
 	 *
60 60
 	 * @param string|MessageSpecifier $message Message key or object
61
-	 * @return Status
61
+	 * @return StatusValue
62 62
 	 */
63 63
 	public static function newFatal( $message /*, parameters...*/ ) {
64 64
 		$params = func_get_args();
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * Factory function for good results
72 72
 	 *
73 73
 	 * @param mixed $value
74
-	 * @return Status
74
+	 * @return StatusValue
75 75
 	 */
76 76
 	public static function newGood( $value = null ) {
77 77
 		$result = new static();
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 	 * Add an error and set OK to false, indicating that the operation
168 168
 	 * as a whole was fatal
169 169
 	 *
170
-	 * @param string|MessageSpecifier $message Message key or object
170
+	 * @param string $message Message key or object
171 171
 	 */
172 172
 	public function fatal( $message /*, parameters... */ ) {
173 173
 		$this->errors[] = array(
Please login to merge, or discard this patch.
includes/libs/XmlTypeCheck.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,8 @@  discard block
 block discarded – undo
134 134
 
135 135
 
136 136
 	/**
137
-	 * @param string $fname the filename
137
+	 * @param string $xml
138
+	 * @param boolean $isFile
138 139
 	 */
139 140
 	private function validateFromInput( $xml, $isFile ) {
140 141
 		$reader = new XMLReader();
@@ -175,6 +176,9 @@  discard block
 block discarded – undo
175 176
 		$this->wellFormed = false;
176 177
 	}
177 178
 
179
+	/**
180
+	 * @param XMLReader $reader
181
+	 */
178 182
 	private function validate( $reader ) {
179 183
 
180 184
 		// First, move through anything that isn't an element, and
@@ -286,7 +290,7 @@  discard block
 block discarded – undo
286 290
 	}
287 291
 
288 292
 	/**
289
-	 * @param $name
293
+	 * @param string $name
290 294
 	 * @param $attribs
291 295
 	 */
292 296
 	private function elementOpen( $name, $attribs ) {
Please login to merge, or discard this patch.
includes/Licenses.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 	/**
95 95
 	 * @param array $list
96 96
 	 * @param array $path
97
-	 * @param mixed $item
97
+	 * @param License $item
98 98
 	 */
99 99
 	protected function stackItem( &$list, $path, $item ) {
100 100
 		$position =& $list;
Please login to merge, or discard this patch.
includes/Linker.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
 	/**
707 707
 	 * Make HTML for a thumbnail including image, border and caption
708 708
 	 * @param Title $title
709
-	 * @param File|bool $file File object or false if it doesn't exist
709
+	 * @param File $file File object or false if it doesn't exist
710 710
 	 * @param string $label
711 711
 	 * @param string $alt
712 712
 	 * @param string $align
@@ -1268,7 +1268,7 @@  discard block
 block discarded – undo
1268 1268
 	 * @param string|null $wikiId Id (as used by WikiMap) of the wiki to generate links to.
1269 1269
 	 *  For use with external changes.
1270 1270
 	 *
1271
-	 * @return mixed|string
1271
+	 * @return string
1272 1272
 	 */
1273 1273
 	public static function formatComment(
1274 1274
 		$comment, $title = null, $local = false, $wikiId = null
@@ -1494,7 +1494,7 @@  discard block
 block discarded – undo
1494 1494
 	 * @param string $text
1495 1495
 	 * @param string|null $wikiId Id of the wiki to link to (if not the local wiki),
1496 1496
 	 *  as used by WikiMap.
1497
-	 * @param string|string[] $options See the $options parameter in Linker::link.
1497
+	 * @param string $options See the $options parameter in Linker::link.
1498 1498
 	 *
1499 1499
 	 * @return string HTML link
1500 1500
 	 */
@@ -1736,7 +1736,7 @@  discard block
 block discarded – undo
1736 1736
 	 * Generate a table of contents from a section tree.
1737 1737
 	 *
1738 1738
 	 * @param array $tree Return value of ParserOutput::getSections()
1739
-	 * @param string|Language|bool $lang Language for the toc title, defaults to user language
1739
+	 * @param Language $lang Language for the toc title, defaults to user language
1740 1740
 	 * @return string HTML fragment
1741 1741
 	 */
1742 1742
 	public static function generateTOC( $tree, $lang = false ) {
@@ -1793,7 +1793,7 @@  discard block
 block discarded – undo
1793 1793
 	 * Split a link trail, return the "inside" portion and the remainder of the trail
1794 1794
 	 * as a two-element array
1795 1795
 	 * @param string $trail
1796
-	 * @return array
1796
+	 * @return string[]
1797 1797
 	 */
1798 1798
 	static function splitTrail( $trail ) {
1799 1799
 		global $wgContLang;
@@ -1831,7 +1831,7 @@  discard block
 block discarded – undo
1831 1831
 	 *
1832 1832
 	 * @param Revision $rev
1833 1833
 	 * @param IContextSource $context Context to use or null for the main context.
1834
-	 * @param array $options
1834
+	 * @param string[] $options
1835 1835
 	 * @return string
1836 1836
 	 */
1837 1837
 	public static function generateRollback( $rev, IContextSource $context = null,
@@ -2013,7 +2013,7 @@  discard block
 block discarded – undo
2013 2013
 	 * @param array $templates Array of templates from Article::getUsedTemplate or similar
2014 2014
 	 * @param bool $preview Whether this is for a preview
2015 2015
 	 * @param bool $section Whether this is for a section edit
2016
-	 * @param Title|Message|string|null $more An escaped link for "More..." of the templates
2016
+	 * @param string|null $more An escaped link for "More..." of the templates
2017 2017
 	 * @return string HTML output
2018 2018
 	 */
2019 2019
 	public static function formatTemplates( $templates, $preview = false,
Please login to merge, or discard this patch.
includes/logging/LogEventsList.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -413,8 +413,8 @@  discard block
 block discarded – undo
413 413
 
414 414
 	/**
415 415
 	 * @param stdClass $row Row
416
-	 * @param string|array $type
417
-	 * @param string|array $action
416
+	 * @param string[] $type
417
+	 * @param string $action
418 418
 	 * @param string $right
419 419
 	 * @return bool
420 420
 	 */
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 	 * @param IDatabase $db
650 650
 	 * @param string $audience Public/user
651 651
 	 * @param User $user User to check, or null to use $wgUser
652
-	 * @return string|bool String on success, false on failure.
652
+	 * @return string|false String on success, false on failure.
653 653
 	 */
654 654
 	public static function getExcludeClause( $db, $audience = 'public', User $user = null ) {
655 655
 		global $wgLogRestrictions;
Please login to merge, or discard this patch.
includes/logging/LogFormatter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -423,7 +423,7 @@
 block discarded – undo
423 423
 	 * Returns a sentence describing the log action. Usually
424 424
 	 * a Message object is returned, but old style log types
425 425
 	 * and entries might return pre-escaped HTML string.
426
-	 * @return Message|string Pre-escaped HTML
426
+	 * @return Message Pre-escaped HTML
427 427
 	 */
428 428
 	protected function getActionMessage() {
429 429
 		$message = $this->msg( $this->getMessageKey() );
Please login to merge, or discard this patch.
includes/MagicWord.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -771,7 +771,7 @@  discard block
 block discarded – undo
771 771
 
772 772
 	/**
773 773
 	 * Get the base regex
774
-	 * @return array
774
+	 * @return string[]
775 775
 	 */
776 776
 	function getBaseRegex() {
777 777
 		if ( is_null( $this->baseRegex ) ) {
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
 	/**
816 816
 	 * Get a regex for matching variables with parameters
817 817
 	 *
818
-	 * @return string
818
+	 * @return string[]
819 819
 	 */
820 820
 	function getVariableRegex() {
821 821
 		return str_replace( "\\$1", "(.*?)", $this->getRegex() );
@@ -868,7 +868,7 @@  discard block
 block discarded – undo
868 868
 	 * Returns array(magic word ID, parameter value)
869 869
 	 * If there is no parameter value, that element will be false.
870 870
 	 *
871
-	 * @param array $m
871
+	 * @param string[] $m
872 872
 	 *
873 873
 	 * @throws MWException
874 874
 	 * @return array
Please login to merge, or discard this patch.
includes/mail/EmailNotification.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -474,7 +474,7 @@
 block discarded – undo
474 474
 	 *
475 475
 	 * @param User $watchingUser
476 476
 	 * @param string $source
477
-	 * @return bool
477
+	 * @return Status
478 478
 	 * @private
479 479
 	 */
480 480
 	function sendPersonalised( $watchingUser, $source ) {
Please login to merge, or discard this patch.
includes/media/Bitmap.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	 *
35 35
 	 * @param string $dstPath
36 36
 	 * @param bool $checkDstPath
37
-	 * @return string|Callable One of client, im, custom, gd, imext or an array( object, method )
37
+	 * @return string One of client, im, custom, gd, imext or an array( object, method )
38 38
 	 */
39 39
 	protected function getScalerType( $dstPath, $checkDstPath = true ) {
40 40
 		global $wgUseImageResize, $wgUseImageMagick, $wgCustomConvertCommand;
Please login to merge, or discard this patch.