@@ -804,7 +804,6 @@ |
||
804 | 804 | * Name a variant based on a format with arbitrary parameters |
805 | 805 | * |
806 | 806 | * @param string $format The format name. |
807 | - * @param mixed $arg,... Additional arguments |
|
808 | 807 | * @return string |
809 | 808 | * @throws InvalidArgumentException |
810 | 809 | */ |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * Set a different instance than {@link Upload_Validator} |
129 | 129 | * for this upload session. |
130 | 130 | * |
131 | - * @param object $validator |
|
131 | + * @param Upload_Validator $validator |
|
132 | 132 | */ |
133 | 133 | public function setValidator($validator) |
134 | 134 | { |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | /** |
394 | 394 | * Determines wether previous operations caused an error. |
395 | 395 | * |
396 | - * @return boolean |
|
396 | + * @return integer |
|
397 | 397 | */ |
398 | 398 | public function isError() |
399 | 399 | { |
@@ -147,6 +147,7 @@ discard block |
||
147 | 147 | * {@inheritdoc} |
148 | 148 | * |
149 | 149 | * Also set the URLParams |
150 | + * @param HTTPRequest $request |
|
150 | 151 | */ |
151 | 152 | public function setRequest($request) |
152 | 153 | { |
@@ -523,7 +524,7 @@ discard block |
||
523 | 524 | * |
524 | 525 | * @param array $params |
525 | 526 | * |
526 | - * @return string |
|
527 | + * @return DBHTMLText |
|
527 | 528 | */ |
528 | 529 | public function render($params = null) |
529 | 530 | { |
@@ -702,7 +703,7 @@ discard block |
||
702 | 703 | * Tests whether a redirection has been requested. If redirect() has been called, it will return |
703 | 704 | * the URL redirected to. Otherwise, it will return null. |
704 | 705 | * |
705 | - * @return null|string |
|
706 | + * @return boolean |
|
706 | 707 | */ |
707 | 708 | public function redirectedTo() |
708 | 709 | { |
@@ -736,7 +737,6 @@ discard block |
||
736 | 737 | * |
737 | 738 | * Caution: All parameters are expected to be URI-encoded already. |
738 | 739 | * |
739 | - * @param string|array $arg,.. One or more link segments, or list of link segments as an array |
|
740 | 740 | * @return string |
741 | 741 | */ |
742 | 742 | public static function join_links($arg = null) |
@@ -151,7 +151,7 @@ |
||
151 | 151 | * @see http://uk3.php.net/manual/en/function.setcookie.php |
152 | 152 | * |
153 | 153 | * @param string $name The name of the cookie |
154 | - * @param string|array $value The value for the cookie to hold |
|
154 | + * @param false|string $value The value for the cookie to hold |
|
155 | 155 | * @param int $expiry The number of days until expiry |
156 | 156 | * @param string $path The path to save the cookie on (falls back to site base) |
157 | 157 | * @param string $domain The domain to make the cookie available on |
@@ -458,9 +458,9 @@ |
||
458 | 458 | * it's only advisable to send small files through this method. |
459 | 459 | * |
460 | 460 | * @static |
461 | - * @param $fileData |
|
461 | + * @param string $fileData |
|
462 | 462 | * @param $fileName |
463 | - * @param null $mimeType |
|
463 | + * @param string $mimeType |
|
464 | 464 | * @return HTTPResponse |
465 | 465 | */ |
466 | 466 | public static function send_file($fileData, $fileName, $mimeType = null) |
@@ -296,7 +296,7 @@ |
||
296 | 296 | * |
297 | 297 | * Must not raise HTTPResponse_Exceptions - instead it should return |
298 | 298 | * |
299 | - * @param $request |
|
299 | + * @param HTTPRequest $request |
|
300 | 300 | * @param $action |
301 | 301 | * @return HTTPResponse |
302 | 302 | */ |
@@ -248,6 +248,7 @@ |
||
248 | 248 | * via the standard template inclusion process. |
249 | 249 | * |
250 | 250 | * @param string |
251 | + * @param string|null $template |
|
251 | 252 | */ |
252 | 253 | public function setTemplate($template) |
253 | 254 | { |
@@ -330,6 +330,9 @@ discard block |
||
330 | 330 | } |
331 | 331 | } |
332 | 332 | |
333 | + /** |
|
334 | + * @param string $name |
|
335 | + */ |
|
333 | 336 | public function inst_set($name, $val) |
334 | 337 | { |
335 | 338 | // Quicker execution path for "."-free names |
@@ -379,6 +382,9 @@ discard block |
||
379 | 382 | $diffVar[sizeof($var)-1] = $val; |
380 | 383 | } |
381 | 384 | |
385 | + /** |
|
386 | + * @param string $name |
|
387 | + */ |
|
382 | 388 | public function inst_get($name) |
383 | 389 | { |
384 | 390 | // Quicker execution path for "."-free names |
@@ -297,6 +297,9 @@ discard block |
||
297 | 297 | |
298 | 298 | private static $method_from_cache = array(); |
299 | 299 | |
300 | + /** |
|
301 | + * @param string $method |
|
302 | + */ |
|
300 | 303 | public static function has_method_from($class, $method, $compclass) |
301 | 304 | { |
302 | 305 | $lClass = strtolower($class); |
@@ -322,6 +325,8 @@ discard block |
||
322 | 325 | |
323 | 326 | /** |
324 | 327 | * @deprecated 4.0..5.0 |
328 | + * @param string $candidateClass |
|
329 | + * @param string $fieldName |
|
325 | 330 | */ |
326 | 331 | public static function table_for_object_field($candidateClass, $fieldName) |
327 | 332 | { |