@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | /** |
| 312 | 312 | * Assign value posted from form submission |
| 313 | 313 | * |
| 314 | - * @param mixed $value |
|
| 314 | + * @param string $value |
|
| 315 | 315 | * @param mixed $data |
| 316 | 316 | * @return $this |
| 317 | 317 | */ |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | * |
| 337 | 337 | * When $html5=true, assign value from ISO 8601 string. |
| 338 | 338 | * |
| 339 | - * @param mixed $value |
|
| 339 | + * @param string $value |
|
| 340 | 340 | * @param mixed $data |
| 341 | 341 | * @return $this |
| 342 | 342 | */ |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
| 143 | - * @param $bool |
|
| 143 | + * @param boolean $bool |
|
| 144 | 144 | * @return $this |
| 145 | 145 | */ |
| 146 | 146 | public function setHTML5($bool) |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | * Assign value posted from form submission, based on {@link $datetimeFormat}. |
| 154 | 154 | * When $html5=true, this needs to be normalised ISO format (with "T" separator). |
| 155 | 155 | * |
| 156 | - * @param mixed $value |
|
| 156 | + * @param string $value |
|
| 157 | 157 | * @param mixed $data |
| 158 | 158 | * @return $this |
| 159 | 159 | */ |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | * When $html5=true, assign value from ISO 8601 normalised string (with a "T" separator). |
| 342 | 342 | * Falls back to an ISO 8601 string (with a whitespace separator). |
| 343 | 343 | * |
| 344 | - * @param mixed $value |
|
| 344 | + * @param string $value |
|
| 345 | 345 | * @param mixed $data |
| 346 | 346 | * @return $this |
| 347 | 347 | */ |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | * Tidy up the internal date representation (ISO 8601), |
| 457 | 457 | * and fall back to strtotime() if there's parsing errors. |
| 458 | 458 | * |
| 459 | - * @param string $date Date in ISO 8601 or approximate form |
|
| 459 | + * @param string $datetime |
|
| 460 | 460 | * @return string ISO 8601 date, or null if not valid |
| 461 | 461 | */ |
| 462 | 462 | public function tidyInternal($datetime) |
@@ -551,6 +551,9 @@ discard block |
||
| 551 | 551 | return $this; |
| 552 | 552 | } |
| 553 | 553 | |
| 554 | + /** |
|
| 555 | + * @param boolean $bool |
|
| 556 | + */ |
|
| 554 | 557 | public function setReadonly($bool) |
| 555 | 558 | { |
| 556 | 559 | parent::setReadonly($bool); |
@@ -49,6 +49,9 @@ discard block |
||
| 49 | 49 | return parent::login($request, Authenticator::CMS_LOGIN); // TODO: Change the autogenerated stub |
| 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 |
@@ -53,6 +53,7 @@ |
||
| 53 | 53 | * @param $message |
| 54 | 54 | * @param bool &$success Success flag |
| 55 | 55 | * @param null|Member $member If the parent method already identified the member, it can be passed in |
| 56 | + * @param null|boolean $success |
|
| 56 | 57 | * @return Member Found member, regardless of successful login |
| 57 | 58 | */ |
| 58 | 59 | protected function authenticateMember($data, &$message, &$success, $member = null) |
@@ -135,7 +135,6 @@ discard block |
||
| 135 | 135 | * [Optional: 'Remember' => 1 ] |
| 136 | 136 | * ) |
| 137 | 137 | * |
| 138 | - * @param array $data |
|
| 139 | 138 | * @return HTTPResponse |
| 140 | 139 | */ |
| 141 | 140 | protected function redirectAfterSuccessfulLogin() |
@@ -217,6 +216,7 @@ discard block |
||
| 217 | 216 | * Try to authenticate the user |
| 218 | 217 | * |
| 219 | 218 | * @param array $data Submitted data |
| 219 | + * @param Member $member |
|
| 220 | 220 | * @return Member Returns the member object on successful authentication |
| 221 | 221 | * or NULL on failure. |
| 222 | 222 | */ |
@@ -246,6 +246,7 @@ discard block |
||
| 246 | 246 | |
| 247 | 247 | /** |
| 248 | 248 | * @todo copypaste from FormRequestHandler - refactor |
| 249 | + * @param string $link |
|
| 249 | 250 | */ |
| 250 | 251 | protected function addBackURLParam($link) |
| 251 | 252 | { |
@@ -564,8 +564,7 @@ discard block |
||
| 564 | 564 | /** |
| 565 | 565 | * Combine the given forms into a formset with a tabbed interface |
| 566 | 566 | * |
| 567 | - * @param array $authenticators List of Authenticator instances |
|
| 568 | - * @return string |
|
| 567 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
| 569 | 568 | */ |
| 570 | 569 | protected function generateLoginFormSet($forms) |
| 571 | 570 | { |
@@ -1204,6 +1203,7 @@ discard block |
||
| 1204 | 1203 | |
| 1205 | 1204 | /** |
| 1206 | 1205 | * For the database_is_ready call to return a certain value - used for testing |
| 1206 | + * @param boolean $isReady |
|
| 1207 | 1207 | */ |
| 1208 | 1208 | public static function force_database_is_ready($isReady) |
| 1209 | 1209 | { |
@@ -1247,7 +1247,7 @@ discard block |
||
| 1247 | 1247 | /** |
| 1248 | 1248 | * Set to true to ignore access to disallowed actions, rather than returning permission failure |
| 1249 | 1249 | * Note that this is just a flag that other code needs to check with Security::ignore_disallowed_actions() |
| 1250 | - * @param $flag True or false |
|
| 1250 | + * @param boolean $flag True or false |
|
| 1251 | 1251 | */ |
| 1252 | 1252 | public static function set_ignore_disallowed_actions($flag) |
| 1253 | 1253 | { |