@@ -47,7 +47,7 @@ |
||
47 | 47 | * Eg: $this->characterStrength(3, array("lowercase", "uppercase", "digits", "punctuation")) |
48 | 48 | * |
49 | 49 | * @param int $minScore The minimum number of character tests that must pass |
50 | - * @param array $testNames The names of the tests to perform |
|
50 | + * @param string[] $testNames The names of the tests to perform |
|
51 | 51 | * @return $this |
52 | 52 | */ |
53 | 53 | public function characterStrength($minScore, $testNames) |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * will be checked for the current user |
123 | 123 | * @param bool $strict Use "strict" checking (which means a permission |
124 | 124 | * will be granted if the key does not exist at all)? |
125 | - * @return int|bool The ID of the permission record if the permission |
|
125 | + * @return boolean|string The ID of the permission record if the permission |
|
126 | 126 | * exists; FALSE otherwise. If "strict" checking is |
127 | 127 | * disabled, TRUE will be returned if the permission does not exist at all. |
128 | 128 | */ |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | * @param string $arg Optional argument (e.g. a permissions for a specific page) |
163 | 163 | * @param bool $strict Use "strict" checking (which means a permission |
164 | 164 | * will be granted if the key does not exist at all)? |
165 | - * @return int|bool The ID of the permission record if the permission |
|
165 | + * @return boolean|string The ID of the permission record if the permission |
|
166 | 166 | * exists; FALSE otherwise. If "strict" checking is |
167 | 167 | * disabled, TRUE will be returned if the permission does not exist at all. |
168 | 168 | */ |
@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * Get permissions |
60 | 60 | * |
61 | - * @return array Associative array of permissions in this permission |
|
61 | + * @return string Associative array of permissions in this permission |
|
62 | 62 | * group. The array indicies are the permission codes as |
63 | 63 | * used in {@link Permission::check()}. The value is |
64 | 64 | * suitable for using in an interface. |
@@ -150,6 +150,7 @@ |
||
150 | 150 | /** |
151 | 151 | * Get the body element, or false if there isn't one (we haven't loaded any content |
152 | 152 | * or this instance is in an invalid state) |
153 | + * @return \DOMElement |
|
153 | 154 | */ |
154 | 155 | public function getBody() |
155 | 156 | { |
@@ -197,6 +197,9 @@ |
||
197 | 197 | |
198 | 198 | // -------------------------------------------------------------------------------------------------------------- |
199 | 199 | |
200 | + /** |
|
201 | + * @param DOMElement $node |
|
202 | + */ |
|
200 | 203 | protected function removeNode($node) |
201 | 204 | { |
202 | 205 | $node->parentNode->removeChild($node); |
@@ -139,6 +139,7 @@ |
||
139 | 139 | |
140 | 140 | /** |
141 | 141 | * @param boolean |
142 | + * @param boolean $bool |
|
142 | 143 | */ |
143 | 144 | public function setAllowMultibyte($bool) |
144 | 145 | { |
@@ -74,6 +74,7 @@ |
||
74 | 74 | * while automatically busting this cache every time the file is changed. |
75 | 75 | * |
76 | 76 | * @param bool |
77 | + * @param boolean $var |
|
77 | 78 | */ |
78 | 79 | public static function set_suffix_requirements($var) |
79 | 80 | { |
@@ -321,6 +321,7 @@ |
||
321 | 321 | * Forces the JavaScript requirements to the end of the body, right before the closing tag |
322 | 322 | * |
323 | 323 | * @param bool |
324 | + * @param boolean $var |
|
324 | 325 | * @return $this |
325 | 326 | */ |
326 | 327 | public function setForceJSToBottom($var) |
@@ -95,6 +95,8 @@ discard block |
||
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Override the function that constructs the result arrays to also prepare a 'php' item in the array |
98 | + * @param string $matchrule |
|
99 | + * @param string $name |
|
98 | 100 | */ |
99 | 101 | function construct($matchrule, $name, $arguments = null) |
100 | 102 | { |
@@ -163,9 +165,9 @@ discard block |
||
163 | 165 | |
164 | 166 | /** |
165 | 167 | * Ensures that the arguments to addOpenBlock and addClosedBlock are valid |
166 | - * @param $name |
|
167 | - * @param $callable |
|
168 | - * @param $type |
|
168 | + * @param string $name |
|
169 | + * @param callable $callable |
|
170 | + * @param string $type |
|
169 | 171 | * @throws InvalidArgumentException |
170 | 172 | */ |
171 | 173 | protected function validateExtensionBlock($name, $callable, $type) |
@@ -924,6 +926,7 @@ discard block |
||
924 | 926 | * The basic generated PHP of LookupStep and LastLookupStep is the same, except that LookupStep calls 'obj' to |
925 | 927 | * get the next ViewableData in the sequence, and LastLookupStep calls different methods (XML_val, hasValue, obj) |
926 | 928 | * depending on the context the lookup is used in. |
929 | + * @param string $method |
|
927 | 930 | */ |
928 | 931 | function Lookup_AddLookupStep(&$res, $sub, $method) |
929 | 932 | { |
@@ -6477,6 +6480,7 @@ discard block |
||
6477 | 6480 | |
6478 | 6481 | /** |
6479 | 6482 | * @param string $code |
6483 | + * @param string $templateName |
|
6480 | 6484 | * @return string $code |
6481 | 6485 | */ |
6482 | 6486 | protected function includeDebuggingComments($code, $templateName) |