@@ -573,8 +573,7 @@ discard block |
||
573 | 573 | /** |
574 | 574 | * Combine the given forms into a formset with a tabbed interface |
575 | 575 | * |
576 | - * @param array $authenticators List of Authenticator instances |
|
577 | - * @return string |
|
576 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
578 | 577 | */ |
579 | 578 | protected function generateLoginFormSet($forms) |
580 | 579 | { |
@@ -640,7 +639,7 @@ discard block |
||
640 | 639 | * For multiple authenticators, Security_MultiAuthenticatorLogin is used. |
641 | 640 | * See getTemplatesFor and getIncludeTemplate for how to override template logic |
642 | 641 | * |
643 | - * @param $request |
|
642 | + * @param HTTPRequest $request |
|
644 | 643 | * @return HTTPResponse|string Returns the "login" page as HTML code. |
645 | 644 | * @throws HTTPResponse_Exception |
646 | 645 | */ |
@@ -672,6 +671,10 @@ discard block |
||
672 | 671 | $handlers = $authenticators; |
673 | 672 | array_walk( |
674 | 673 | $handlers, |
674 | + |
|
675 | + /** |
|
676 | + * @param HTTPRequest $auth |
|
677 | + */ |
|
675 | 678 | function (&$auth, $name) use ($link) { |
676 | 679 | $auth = $auth->getLoginHandler(Controller::join_links($link, $name)); |
677 | 680 | } |
@@ -927,7 +930,7 @@ discard block |
||
927 | 930 | * Factory method for the lost password form |
928 | 931 | * |
929 | 932 | * @skipUpgrade |
930 | - * @return ChangePasswordForm Returns the lost password form |
|
933 | + * @return MemberAuthenticator\ChangePasswordForm Returns the lost password form |
|
931 | 934 | */ |
932 | 935 | public function ChangePasswordForm() |
933 | 936 | { |
@@ -1212,6 +1215,7 @@ discard block |
||
1212 | 1215 | |
1213 | 1216 | /** |
1214 | 1217 | * For the database_is_ready call to return a certain value - used for testing |
1218 | + * @param boolean $isReady |
|
1215 | 1219 | */ |
1216 | 1220 | public static function force_database_is_ready($isReady) |
1217 | 1221 | { |
@@ -1255,7 +1259,7 @@ discard block |
||
1255 | 1259 | /** |
1256 | 1260 | * Set to true to ignore access to disallowed actions, rather than returning permission failure |
1257 | 1261 | * Note that this is just a flag that other code needs to check with Security::ignore_disallowed_actions() |
1258 | - * @param $flag True or false |
|
1262 | + * @param boolean $flag True or false |
|
1259 | 1263 | */ |
1260 | 1264 | public static function set_ignore_disallowed_actions($flag) |
1261 | 1265 | { |