@@ -344,7 +344,7 @@ |
||
| 344 | 344 | /** |
| 345 | 345 | * Encode an array of parts using multipart |
| 346 | 346 | * |
| 347 | - * @param array $parts List of parts |
|
| 347 | + * @param string[] $parts List of parts |
|
| 348 | 348 | * @param string $contentType Content-type of parts |
| 349 | 349 | * @param array $headers Existing headers to include in response |
| 350 | 350 | * @return array Array with two items, the body followed by headers |
@@ -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 | { |
@@ -521,12 +521,18 @@ discard block |
||
| 521 | 521 | |
| 522 | 522 | protected $extraConfigSources = array(); |
| 523 | 523 | |
| 524 | + /** |
|
| 525 | + * @param string $class |
|
| 526 | + */ |
|
| 524 | 527 | public function extraConfigSourcesChanged($class) |
| 525 | 528 | { |
| 526 | 529 | unset($this->extraConfigSources[$class]); |
| 527 | 530 | $this->cache->clean("__{$class}"); |
| 528 | 531 | } |
| 529 | 532 | |
| 533 | + /** |
|
| 534 | + * @param integer $sourceOptions |
|
| 535 | + */ |
|
| 530 | 536 | protected function getUncached($class, $name, $sourceOptions, &$result, $suppress, &$tags) |
| 531 | 537 | { |
| 532 | 538 | $tags[] = "__{$class}"; |
@@ -627,7 +633,7 @@ discard block |
||
| 627 | 633 | * caching heavily here. |
| 628 | 634 | * |
| 629 | 635 | * @param $class string - The name of the class to get the value for |
| 630 | - * @param $name string - The property to get the value for |
|
| 636 | + * @param string $name string - The property to get the value for |
|
| 631 | 637 | * @param int $sourceOptions Bitmask which can be set to some combintain of Config::UNINHERITED, |
| 632 | 638 | * Config::FIRST_SET, and Config::EXCLUDE_EXTENSIONS. |
| 633 | 639 | * |
@@ -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) |