@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * @param string $key Key to decrease |
| 310 | 310 | * @param int $amt (optional) amount to decrease |
| 311 | 311 | * |
| 312 | - * @return mixed False on failure, value on success |
|
| 312 | + * @return null|string False on failure, value on success |
|
| 313 | 313 | */ |
| 314 | 314 | public function decr( $key, $amt = 1 ) { |
| 315 | 315 | return $this->_incrdecr( 'decr', $key, $amt ); |
@@ -548,7 +548,7 @@ discard block |
||
| 548 | 548 | * @param string $key Key to increment |
| 549 | 549 | * @param int $amt (optional) amount to increment |
| 550 | 550 | * |
| 551 | - * @return int|null Null if the key does not exist yet (this does NOT |
|
| 551 | + * @return null|string Null if the key does not exist yet (this does NOT |
|
| 552 | 552 | * create new mappings if the key does not exist). If the key does |
| 553 | 553 | * exist, this returns the new value for that key. |
| 554 | 554 | */ |
@@ -872,10 +872,10 @@ discard block |
||
| 872 | 872 | * Perform increment/decriment on $key |
| 873 | 873 | * |
| 874 | 874 | * @param string $cmd Command to perform |
| 875 | - * @param string|array $key Key to perform it on |
|
| 875 | + * @param string $key Key to perform it on |
|
| 876 | 876 | * @param int $amt Amount to adjust |
| 877 | 877 | * |
| 878 | - * @return int New value of $key |
|
| 878 | + * @return null|string New value of $key |
|
| 879 | 879 | * @access private |
| 880 | 880 | */ |
| 881 | 881 | function _incrdecr( $cmd, $key, $amt = 1 ) { |
@@ -915,7 +915,7 @@ discard block |
||
| 915 | 915 | * @param Resource $sock Socket to read from |
| 916 | 916 | * @param array $ret returned values |
| 917 | 917 | * @param float $casToken [optional] |
| 918 | - * @return bool True for success, false for failure |
|
| 918 | + * @return boolean|null True for success, false for failure |
|
| 919 | 919 | * |
| 920 | 920 | * @access private |
| 921 | 921 | */ |
@@ -1183,7 +1183,7 @@ discard block |
||
| 1183 | 1183 | * |
| 1184 | 1184 | * @param Resource $sock The socket |
| 1185 | 1185 | * @param int $len The number of bytes to read |
| 1186 | - * @return string|bool The string on success, false on failure. |
|
| 1186 | + * @return false|string The string on success, false on failure. |
|
| 1187 | 1187 | */ |
| 1188 | 1188 | function _fread( $sock, $len ) { |
| 1189 | 1189 | $buf = ''; |
@@ -1214,7 +1214,7 @@ discard block |
||
| 1214 | 1214 | * The \r\n line ending is stripped from the response. |
| 1215 | 1215 | * |
| 1216 | 1216 | * @param Resource $sock The socket |
| 1217 | - * @return string|bool The string on success, false on failure |
|
| 1217 | + * @return false|string The string on success, false on failure |
|
| 1218 | 1218 | */ |
| 1219 | 1219 | function _fgets( $sock ) { |
| 1220 | 1220 | $result = fgets( $sock ); |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | */ |
| 24 | 24 | class DoubleReplacer extends Replacer { |
| 25 | 25 | /** |
| 26 | - * @param mixed $from |
|
| 27 | - * @param mixed $to |
|
| 26 | + * @param string $from |
|
| 27 | + * @param string $to |
|
| 28 | 28 | * @param int $index |
| 29 | 29 | */ |
| 30 | 30 | public function __construct( $from, $to, $index = 0 ) { |
@@ -134,7 +134,8 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 ) { |
@@ -94,7 +94,7 @@ |
||
| 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; |
@@ -413,8 +413,8 @@ discard block |
||
| 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 |
||
| 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; |
@@ -474,7 +474,7 @@ |
||
| 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 ) { |
@@ -1230,8 +1230,8 @@ discard block |
||
| 1230 | 1230 | * numbers, joins arrays of numbers with commas. |
| 1231 | 1231 | * |
| 1232 | 1232 | * @param mixed $num The value to format |
| 1233 | - * @param float|int|bool $round Digits to round to or false. |
|
| 1234 | - * @return mixed A floating point number or whatever we were fed |
|
| 1233 | + * @param integer $round Digits to round to or false. |
|
| 1234 | + * @return string|null A floating point number or whatever we were fed |
|
| 1235 | 1235 | */ |
| 1236 | 1236 | private function formatNum( $num, $round = false ) { |
| 1237 | 1237 | $m = array(); |
@@ -1396,7 +1396,7 @@ discard block |
||
| 1396 | 1396 | * |
| 1397 | 1397 | * @param int $coord Degrees, minutes and seconds |
| 1398 | 1398 | * @param string $type Latitude or longitude (for if its a NWS or E) |
| 1399 | - * @return mixed A floating point number or whatever we were fed |
|
| 1399 | + * @return string A floating point number or whatever we were fed |
|
| 1400 | 1400 | */ |
| 1401 | 1401 | private function formatCoords( $coord, $type ) { |
| 1402 | 1402 | $ref = ''; |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * and those can't extract xmp on files containing both exif and xmp data |
| 45 | 45 | * |
| 46 | 46 | * @param string $filename Name of jpeg file |
| 47 | - * @return array Array of interesting segments. |
|
| 47 | + * @return string Array of interesting segments. |
|
| 48 | 48 | * @throws MWException If given invalid file. |
| 49 | 49 | */ |
| 50 | 50 | static function segmentSplitter( $filename ) { |
@@ -29,6 +29,10 @@ discard block |
||
| 29 | 29 | * @ingroup Media |
| 30 | 30 | */ |
| 31 | 31 | class SVGMetadataExtractor { |
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * @param string $filename |
|
| 35 | + */ |
|
| 32 | 36 | static function getMetadata( $filename ) { |
| 33 | 37 | $svg = new SVGReader( $filename ); |
| 34 | 38 | |
@@ -372,7 +376,7 @@ discard block |
||
| 372 | 376 | * http://www.w3.org/TR/SVG11/coords.html#UnitIdentifiers |
| 373 | 377 | * |
| 374 | 378 | * @param string $length CSS/SVG length. |
| 375 | - * @param float|int $viewportSize Optional scale for percentage units... |
|
| 379 | + * @param integer $viewportSize Optional scale for percentage units... |
|
| 376 | 380 | * @return float Length in pixels |
| 377 | 381 | */ |
| 378 | 382 | static function scaleSVGUnit( $length, $viewportSize = 512 ) { |