@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @see http://www.w3.org/TR/REC-html40/types.html#type-cdata |
| 59 | 59 | * |
| 60 | - * @param array|string $val String to escape, or array of strings |
|
| 60 | + * @param string $val String to escape, or array of strings |
|
| 61 | 61 | * |
| 62 | - * @return array|string |
|
| 62 | + * @return string |
|
| 63 | 63 | */ |
| 64 | 64 | public static function raw2htmlname($val) |
| 65 | 65 | { |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | * table, or column name. Supports encoding of multi identfiers separated by |
| 201 | 201 | * a delimiter (e.g. ".") |
| 202 | 202 | * |
| 203 | - * @param string|array $identifier The identifier to escape. E.g. 'SiteTree.Title' or list of identifiers |
|
| 203 | + * @param string $identifier The identifier to escape. E.g. 'SiteTree.Title' or list of identifiers |
|
| 204 | 204 | * to be joined via the separator. |
| 205 | 205 | * @param string $separator The string that delimits subsequent identifiers |
| 206 | 206 | * @return string The escaped identifier. E.g. '"SiteTree"."Title"' |
@@ -301,6 +301,7 @@ discard block |
||
| 301 | 301 | * call this function directly, Please use {@link Convert::xml2array()} |
| 302 | 302 | * |
| 303 | 303 | * @param SimpleXMLElement |
| 304 | + * @param SimpleXMLElement $xml |
|
| 304 | 305 | * |
| 305 | 306 | * @return mixed |
| 306 | 307 | */ |
@@ -514,7 +515,7 @@ discard block |
||
| 514 | 515 | * - IDField => idField |
| 515 | 516 | * - iDField => iDField |
| 516 | 517 | * |
| 517 | - * @param $str |
|
| 518 | + * @param string $str |
|
| 518 | 519 | * @return string |
| 519 | 520 | */ |
| 520 | 521 | public static function upperCamelToLowerCamel($str) |
@@ -151,7 +151,7 @@ |
||
| 151 | 151 | /** |
| 152 | 152 | * Get meta-data details on a named method |
| 153 | 153 | * |
| 154 | - * @param array $method |
|
| 154 | + * @param string $method |
|
| 155 | 155 | * @return array List of custom method details, if defined for this method |
| 156 | 156 | */ |
| 157 | 157 | protected function getExtraMethodConfig($method) |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | * |
| 369 | 369 | * @param string $property |
| 370 | 370 | * the name of the property |
| 371 | - * @param object $object |
|
| 371 | + * @param string $object |
|
| 372 | 372 | * the object to be set |
| 373 | 373 | * @return $this |
| 374 | 374 | */ |
@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | * The name of the service to update the definition for |
| 464 | 464 | * @param string $property |
| 465 | 465 | * The name of the property to update. |
| 466 | - * @param mixed $value |
|
| 466 | + * @param string $value |
|
| 467 | 467 | * The value to set |
| 468 | 468 | * @param boolean $append |
| 469 | 469 | * Whether to append (the default) when the property is an array |
@@ -259,7 +259,7 @@ |
||
| 259 | 259 | * Returns an array containing all the descendants (direct and indirect) |
| 260 | 260 | * of a class. |
| 261 | 261 | * |
| 262 | - * @param string|object $class |
|
| 262 | + * @param string $class |
|
| 263 | 263 | * @return array |
| 264 | 264 | */ |
| 265 | 265 | public function getDescendantsOf($class) |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | /** |
| 107 | 107 | * Get value of display_errors ini value |
| 108 | 108 | * |
| 109 | - * @return mixed |
|
| 109 | + * @return string |
|
| 110 | 110 | */ |
| 111 | 111 | protected function getDisplayErrors() |
| 112 | 112 | { |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | * Add this callback to the chain of callbacks to call along with the state |
| 118 | 118 | * that $error must be in this point in the chain for the callback to be called |
| 119 | 119 | * |
| 120 | - * @param $callback - The callback to call |
|
| 120 | + * @param callable $callback - The callback to call |
|
| 121 | 121 | * @param $onErrorState - false if only call if no errors yet, true if only call if already errors, null for either |
| 122 | 122 | * @return $this |
| 123 | 123 | */ |
@@ -38,6 +38,9 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | protected $token = null; |
| 40 | 40 | |
| 41 | + /** |
|
| 42 | + * @param string $token |
|
| 43 | + */ |
|
| 41 | 44 | protected function pathForToken($token) |
| 42 | 45 | { |
| 43 | 46 | return TEMP_FOLDER.'/token_'.preg_replace('/[^a-z0-9]+/', '', $token); |
@@ -247,7 +250,7 @@ discard block |
||
| 247 | 250 | * Given a list of token names, suppress all tokens that have not been validated, and |
| 248 | 251 | * return the non-validated token with the highest priority |
| 249 | 252 | * |
| 250 | - * @param array $keys List of token keys in ascending priority (low to high) |
|
| 253 | + * @param string[] $keys List of token keys in ascending priority (low to high) |
|
| 251 | 254 | * @return ParameterConfirmationToken The token container for the unvalidated $key given with the highest priority |
| 252 | 255 | */ |
| 253 | 256 | public static function prepare_tokens($keys) |
@@ -132,7 +132,7 @@ |
||
| 132 | 132 | * @param mixed $returnVal |
| 133 | 133 | * @param bool $ignoreAjax |
| 134 | 134 | * @param array $ignoredFunctions |
| 135 | - * @return mixed |
|
| 135 | + * @return string|null |
|
| 136 | 136 | */ |
| 137 | 137 | public static function backtrace($returnVal = false, $ignoreAjax = false, $ignoredFunctions = null) |
| 138 | 138 | { |
@@ -217,7 +217,7 @@ |
||
| 217 | 217 | * |
| 218 | 218 | * @todo Mix in custom column mappings |
| 219 | 219 | * |
| 220 | - * @return array |
|
| 220 | + * @return string |
|
| 221 | 221 | **/ |
| 222 | 222 | public function getImportSpec() |
| 223 | 223 | { |
@@ -132,8 +132,8 @@ discard block |
||
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
| 135 | - * @param $obj DataObject |
|
| 136 | - * @param $message string |
|
| 135 | + * @param DataObject $obj DataObject |
|
| 136 | + * @param string $message string |
|
| 137 | 137 | */ |
| 138 | 138 | public function addCreated($obj, $message = null) |
| 139 | 139 | { |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
| 149 | - * @param $obj DataObject |
|
| 150 | - * @param $message string |
|
| 149 | + * @param DataObject $obj DataObject |
|
| 150 | + * @param string $message string |
|
| 151 | 151 | */ |
| 152 | 152 | public function addUpdated($obj, $message = null) |
| 153 | 153 | { |
@@ -160,8 +160,8 @@ discard block |
||
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | - * @param $obj DataObject |
|
| 164 | - * @param $message string |
|
| 163 | + * @param DataObject|null $obj DataObject |
|
| 164 | + * @param string $message string |
|
| 165 | 165 | */ |
| 166 | 166 | public function addDeleted($obj, $message = null) |
| 167 | 167 | { |