@@ -207,6 +207,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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); |
@@ -74,6 +74,7 @@ |
||
| 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; |
@@ -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 ); |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | - * @return array |
|
| 39 | + * @return string[] |
|
| 40 | 40 | */ |
| 41 | 41 | public function __sleep() { |
| 42 | 42 | return array( 'data' ); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | - * @return array|bool |
|
| 59 | + * @return boolean |
|
| 60 | 60 | */ |
| 61 | 61 | public function getArray() { |
| 62 | 62 | return $this->data; |
@@ -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 ) { |
@@ -35,6 +35,7 @@ |
||
| 35 | 35 | * The sample rate specified in a StatsdData entity overrides the sample rate specified here. |
| 36 | 36 | * |
| 37 | 37 | * {@inheritDoc} |
| 38 | + * @return StatsdDataInterface[] |
|
| 38 | 39 | */ |
| 39 | 40 | public function appendSampleRate( $data, $sampleRate = 1 ) { |
| 40 | 41 | if ( $sampleRate < 1 ) { |
@@ -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; |
@@ -706,7 +706,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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, |