Index: trunk/phase3/includes/Cdb_PHP.php |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | /** |
53 | 53 | * The CDB hash function. |
54 | 54 | * |
55 | | - * @param $s |
| 55 | + * @param $s string |
56 | 56 | * |
57 | 57 | * @return |
58 | 58 | */ |
Index: trunk/phase3/includes/api/ApiBase.php |
— | — | @@ -523,7 +523,7 @@ |
524 | 524 | * value) or (parameter name) => (array with PARAM_* constants as keys) |
525 | 525 | * Don't call this function directly: use getFinalParams() to allow |
526 | 526 | * hooks to modify parameters as needed. |
527 | | - * @return array or false |
| 527 | + * @return array|bool |
528 | 528 | */ |
529 | 529 | protected function getAllowedParams() { |
530 | 530 | return false; |
— | — | @@ -773,7 +773,7 @@ |
774 | 774 | * Using the settings determine the value for the given parameter |
775 | 775 | * |
776 | 776 | * @param $paramName String: parameter name |
777 | | - * @param $paramSettings Mixed: default value or an array of settings |
| 777 | + * @param $paramSettings array|mixed default value or an array of settings |
778 | 778 | * using PARAM_* constants. |
779 | 779 | * @param $parseLimit Boolean: parse limit? |
780 | 780 | * @return mixed Parameter value |
Index: trunk/phase3/api.php5 |
— | — | @@ -1 +1 @@ |
2 | | -<?php require 'api.php'; |
\ No newline at end of file |
| 2 | +<?php require 'api.php'; |