@@ -190,7 +190,7 @@ |
||
| 190 | 190 | /** |
| 191 | 191 | * Ensure that the query is ready to execute. |
| 192 | 192 | * |
| 193 | - * @param array|null $queriedColumns Any columns to filter the query by |
|
| 193 | + * @param string[] $queriedColumns Any columns to filter the query by |
|
| 194 | 194 | * @return SQLSelect The finalised sql query |
| 195 | 195 | */ |
| 196 | 196 | public function getFinalisedQuery($queriedColumns = null) |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * - array('fields' => array('A','B','C'), 'type' => 'index/unique/fulltext'): This gives you full |
| 332 | 332 | * control over the index. |
| 333 | 333 | * @param boolean $hasAutoIncPK A flag indicating that the primary key on this table is an autoincrement type |
| 334 | - * @param array $options Create table options (ENGINE, etc.) |
|
| 334 | + * @param string|null $options Create table options (ENGINE, etc.) |
|
| 335 | 335 | * @param array|bool $extensions List of extensions |
| 336 | 336 | */ |
| 337 | 337 | public function requireTable( |
@@ -595,7 +595,7 @@ discard block |
||
| 595 | 595 | * |
| 596 | 596 | * @param string $table The table name. |
| 597 | 597 | * @param string $field The field name. |
| 598 | - * @param array|string $spec The field specification. If passed in array syntax, the specific database |
|
| 598 | + * @param string $spec The field specification. If passed in array syntax, the specific database |
|
| 599 | 599 | * driver takes care of the ALTER TABLE syntax. If passed as a string, its assumed to |
| 600 | 600 | * be prepared as a direct SQL framgment ready for insertion into ALTER TABLE. In this case you'll |
| 601 | 601 | * need to take care of database abstraction in your DBField subclass. |
@@ -304,6 +304,7 @@ discard block |
||
| 304 | 304 | * call this function directly, Please use {@link Convert::xml2array()} |
| 305 | 305 | * |
| 306 | 306 | * @param SimpleXMLElement |
| 307 | + * @param SimpleXMLElement $xml |
|
| 307 | 308 | * |
| 308 | 309 | * @return mixed |
| 309 | 310 | */ |
@@ -517,7 +518,7 @@ discard block |
||
| 517 | 518 | * - IDField => idField |
| 518 | 519 | * - iDField => iDField |
| 519 | 520 | * |
| 520 | - * @param $str |
|
| 521 | + * @param string $str |
|
| 521 | 522 | * @return string |
| 522 | 523 | */ |
| 523 | 524 | public static function upperCamelToLowerCamel($str) |
@@ -49,6 +49,9 @@ discard block |
||
| 49 | 49 | return parent::login($request, Authenticator::CMS_LOGIN); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | + /** |
|
| 53 | + * @param string $action |
|
| 54 | + */ |
|
| 52 | 55 | public function Link($action = null) |
| 53 | 56 | { |
| 54 | 57 | /** @skipUpgrade */ |
@@ -79,6 +82,9 @@ discard block |
||
| 79 | 82 | return null; |
| 80 | 83 | } |
| 81 | 84 | |
| 85 | + /** |
|
| 86 | + * @param string $title |
|
| 87 | + */ |
|
| 82 | 88 | public function getResponseController($title) |
| 83 | 89 | { |
| 84 | 90 | // Use $this to prevent use of Page to render underlying templates |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | * |
| 372 | 372 | * @param string $property |
| 373 | 373 | * the name of the property |
| 374 | - * @param object $object |
|
| 374 | + * @param string $object |
|
| 375 | 375 | * the object to be set |
| 376 | 376 | * @return $this |
| 377 | 377 | */ |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | * The name of the service to update the definition for |
| 467 | 467 | * @param string $property |
| 468 | 468 | * The name of the property to update. |
| 469 | - * @param mixed $value |
|
| 469 | + * @param string $value |
|
| 470 | 470 | * The value to set |
| 471 | 471 | * @param boolean $append |
| 472 | 472 | * Whether to append (the default) when the property is an array |
@@ -788,7 +788,7 @@ discard block |
||
| 788 | 788 | /** |
| 789 | 789 | * @deprecated 4.0.0:5.0.0 Use Injector::has() instead |
| 790 | 790 | * @param $name |
| 791 | - * @return string |
|
| 791 | + * @return boolean |
|
| 792 | 792 | */ |
| 793 | 793 | public function hasService($name) |
| 794 | 794 | { |
@@ -488,7 +488,7 @@ |
||
| 488 | 488 | * Cache all indexes for the given class. |
| 489 | 489 | * Will do nothing if already cached |
| 490 | 490 | * |
| 491 | - * @param $class |
|
| 491 | + * @param string $class |
|
| 492 | 492 | */ |
| 493 | 493 | protected function cacheDatabaseIndexes($class) |
| 494 | 494 | { |
@@ -59,7 +59,7 @@ |
||
| 59 | 59 | * @param string|array $permissionCode Optional |
| 60 | 60 | * @param boolean $tryUsingSessionLogin If true, then the method with authenticate against the |
| 61 | 61 | * session log-in if those credentials are disabled. |
| 62 | - * @return bool|Member |
|
| 62 | + * @return null|Member |
|
| 63 | 63 | * @throws HTTPResponse_Exception |
| 64 | 64 | */ |
| 65 | 65 | public static function requireLogin( |
@@ -169,7 +169,7 @@ |
||
| 169 | 169 | /** |
| 170 | 170 | * Return a link to this request handler. |
| 171 | 171 | * The link returned is supplied in the constructor |
| 172 | - * @param null $action |
|
| 172 | + * @param string $action |
|
| 173 | 173 | * @return string |
| 174 | 174 | */ |
| 175 | 175 | public function link($action = null) |
@@ -596,6 +596,7 @@ discard block |
||
| 596 | 596 | * Set actions that are exempt from validation |
| 597 | 597 | * |
| 598 | 598 | * @param array |
| 599 | + * @param string[] $actions |
|
| 599 | 600 | * @return $this |
| 600 | 601 | */ |
| 601 | 602 | public function setValidationExemptActions($actions) |
@@ -1045,7 +1046,7 @@ discard block |
||
| 1045 | 1046 | * If set to false then the form method is only used to construct the default |
| 1046 | 1047 | * form. |
| 1047 | 1048 | * |
| 1048 | - * @param $bool boolean |
|
| 1049 | + * @param boolean $bool boolean |
|
| 1049 | 1050 | * @return $this |
| 1050 | 1051 | */ |
| 1051 | 1052 | public function setStrictFormMethodCheck($bool) |