@@ -94,6 +94,11 @@ discard block |
||
94 | 94 | fclose( $file ); |
95 | 95 | } |
96 | 96 | |
97 | + /** |
|
98 | + * @param resource $file |
|
99 | + * @param string $length |
|
100 | + * @param integer $indent |
|
101 | + */ |
|
97 | 102 | private function dumpForm( $file, $length, $indent ) { |
98 | 103 | $start = ftell( $file ); |
99 | 104 | $secondary = fread( $file, 4 ); |
@@ -187,6 +192,10 @@ discard block |
||
187 | 192 | } |
188 | 193 | } |
189 | 194 | |
195 | + /** |
|
196 | + * @param resource $file |
|
197 | + * @param string $formLength |
|
198 | + */ |
|
190 | 199 | private function getMultiPageInfo( $file, $formLength ) { |
191 | 200 | // For now, we'll just look for the first page in the file |
192 | 201 | // and report its information, hoping others are the same size. |
@@ -390,6 +399,9 @@ discard block |
||
390 | 399 | return $xml; |
391 | 400 | } |
392 | 401 | |
402 | + /** |
|
403 | + * @param string $line |
|
404 | + */ |
|
393 | 405 | function parseFormDjvu( $line, &$xml ) { |
394 | 406 | $parentLevel = strspn( $line, ' ' ); |
395 | 407 | $line = strtok( "\n" ); |
@@ -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 ) { |
@@ -43,6 +43,9 @@ discard block |
||
43 | 43 | const VP8X_XMP = 4; |
44 | 44 | const VP8X_ANIM = 2; |
45 | 45 | |
46 | + /** |
|
47 | + * @param string $filename |
|
48 | + */ |
|
46 | 49 | public function getMetadata( $image, $filename ) { |
47 | 50 | $parsedWebPData = self::extractMetadata( $filename ); |
48 | 51 | if ( !$parsedWebPData ) { |
@@ -86,7 +89,6 @@ discard block |
||
86 | 89 | /** |
87 | 90 | * Extracts the image size and WebP type from a file |
88 | 91 | * |
89 | - * @param string $chunks Chunks as extracted by RiffExtractor |
|
90 | 92 | * @return array|bool Header data array with entries 'compression', 'width' and 'height', |
91 | 93 | * where 'compression' can be 'lossy', 'lossless', 'animated' or 'unknown'. False if |
92 | 94 | * file is not a valid WebP file. |
@@ -289,7 +291,7 @@ discard block |
||
289 | 291 | * @param $ext |
290 | 292 | * @param $mime |
291 | 293 | * @param $params |
292 | - * @return array |
|
294 | + * @return string[] |
|
293 | 295 | */ |
294 | 296 | public function getThumbType( $ext, $mime, $params = null ) { |
295 | 297 | return array( 'png', 'image/png' ); |
@@ -491,7 +491,7 @@ |
||
491 | 491 | * <exif:DigitalZoomRatio>0/10</exif:DigitalZoomRatio> |
492 | 492 | * and are processing the 0/10 bit. |
493 | 493 | * |
494 | - * @param XMLParser $parser XMLParser reference to the xml parser |
|
494 | + * @param resource $parser XMLParser reference to the xml parser |
|
495 | 495 | * @param string $data Character data |
496 | 496 | * @throws RuntimeException On invalid data |
497 | 497 | */ |
@@ -620,7 +620,7 @@ |
||
620 | 620 | * @todo Remove $ext param |
621 | 621 | * |
622 | 622 | * @param string $file |
623 | - * @param mixed $ext |
|
623 | + * @param boolean|string $ext |
|
624 | 624 | * @return bool|string |
625 | 625 | * @throws MWException |
626 | 626 | */ |
@@ -42,6 +42,9 @@ |
||
42 | 42 | $this->newTitle = $newTitle; |
43 | 43 | } |
44 | 44 | |
45 | + /** |
|
46 | + * @param string $reason |
|
47 | + */ |
|
45 | 48 | public function checkPermissions( User $user, $reason ) { |
46 | 49 | $status = new Status(); |
47 | 50 |
@@ -262,7 +262,7 @@ |
||
262 | 262 | } |
263 | 263 | |
264 | 264 | /** |
265 | - * @param array $params [optional] Array key 'fallback' for $fallback. |
|
265 | + * @param integer $params [optional] Array key 'fallback' for $fallback. |
|
266 | 266 | * @param int|string $fallback Fallback cache, e.g. (CACHE_NONE, "hash") (since 1.24) |
267 | 267 | * @return BagOStuff |
268 | 268 | * @deprecated 1.27 |