@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | |
| 314 | 314 | /** |
| 315 | 315 | * @param array $properties |
| 316 | - * @return string |
|
| 316 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
| 317 | 317 | */ |
| 318 | 318 | public function Field($properties = array()) |
| 319 | 319 | { |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | |
| 480 | 480 | /** |
| 481 | 481 | * Marking a specific node in the tree as disabled |
| 482 | - * @param $node |
|
| 482 | + * @param DataObject $node |
|
| 483 | 483 | * @return boolean |
| 484 | 484 | */ |
| 485 | 485 | public function nodeIsDisabled($node) |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | * |
| 381 | 381 | * @param DataObject $node |
| 382 | 382 | * @param int $depth |
| 383 | - * @return array|string |
|
| 383 | + * @return callable |
|
| 384 | 384 | */ |
| 385 | 385 | protected function getSubtree($node, $depth = 0) |
| 386 | 386 | { |
@@ -613,7 +613,7 @@ discard block |
||
| 613 | 613 | /** |
| 614 | 614 | * Expose the given object in the tree, by marking this page and all it ancestors. |
| 615 | 615 | * |
| 616 | - * @param DataObject|Hierarchy $childObj |
|
| 616 | + * @param DataObject $childObj |
|
| 617 | 617 | * @return $this |
| 618 | 618 | */ |
| 619 | 619 | public function markToExpose(DataObject $childObj) |
@@ -758,7 +758,7 @@ discard block |
||
| 758 | 758 | /** |
| 759 | 759 | * Check if this node has too many children |
| 760 | 760 | * |
| 761 | - * @param DataObject|Hierarchy $node |
|
| 761 | + * @param DataObject $node |
|
| 762 | 762 | * @param int $count Children count (if already calculated) |
| 763 | 763 | * @return bool |
| 764 | 764 | */ |
@@ -418,6 +418,7 @@ discard block |
||
| 418 | 418 | * |
| 419 | 419 | * @param string$html |
| 420 | 420 | * @param DataObject $node |
| 421 | + * @param string $html |
|
| 421 | 422 | * @return string |
| 422 | 423 | */ |
| 423 | 424 | protected function getNodeClassFromTree($html, $node) |
@@ -434,6 +435,10 @@ discard block |
||
| 434 | 435 | return ''; |
| 435 | 436 | } |
| 436 | 437 | |
| 438 | + /** |
|
| 439 | + * @param string $expected |
|
| 440 | + * @param string $actual |
|
| 441 | + */ |
|
| 437 | 442 | protected function assertHTMLSame($expected, $actual, $message = '') |
| 438 | 443 | { |
| 439 | 444 | // Trim each line, strip empty lines |
@@ -50,8 +50,8 @@ |
||
| 50 | 50 | * Attempt to find and authenticate member if possible from the given data |
| 51 | 51 | * |
| 52 | 52 | * @param array $data |
| 53 | - * @param Form $form |
|
| 54 | 53 | * @param bool &$success Success flag |
| 54 | + * @param string $message |
|
| 55 | 55 | * @return Member Found member, regardless of successful login |
| 56 | 56 | */ |
| 57 | 57 | protected function authenticateMember($data, &$message, &$success) |
@@ -130,6 +130,7 @@ |
||
| 130 | 130 | * ) |
| 131 | 131 | * |
| 132 | 132 | * @param array $data |
| 133 | + * @param LoginHandler $formHandler |
|
| 133 | 134 | * @return HTTPResponse |
| 134 | 135 | */ |
| 135 | 136 | protected function logInUserAndRedirect($data, $formHandler) |
@@ -55,6 +55,7 @@ discard block |
||
| 55 | 55 | /** |
| 56 | 56 | * Return a link to this request handler. |
| 57 | 57 | * The link returned is supplied in the constructor |
| 58 | + * @param string $action |
|
| 58 | 59 | * @return string |
| 59 | 60 | */ |
| 60 | 61 | public function link($action = null) |
@@ -115,7 +116,7 @@ discard block |
||
| 115 | 116 | * Factory method for the lost password form |
| 116 | 117 | * |
| 117 | 118 | * @skipUpgrade |
| 118 | - * @return Form Returns the lost password form |
|
| 119 | + * @return LoginForm Returns the lost password form |
|
| 119 | 120 | */ |
| 120 | 121 | public function lostPasswordForm() |
| 121 | 122 | { |
@@ -247,6 +248,8 @@ discard block |
||
| 247 | 248 | |
| 248 | 249 | /** |
| 249 | 250 | * @todo copypaste from FormRequestHandler - refactor |
| 251 | + * @param string $link |
|
| 252 | + * @return string |
|
| 250 | 253 | */ |
| 251 | 254 | protected function addBackURLParam($link) |
| 252 | 255 | { |
@@ -565,8 +565,7 @@ discard block |
||
| 565 | 565 | /** |
| 566 | 566 | * Combine the given forms into a formset with a tabbed interface |
| 567 | 567 | * |
| 568 | - * @param array $authenticators List of Authenticator instances |
|
| 569 | - * @return string |
|
| 568 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
| 570 | 569 | */ |
| 571 | 570 | protected function generateLoginFormSet($forms) |
| 572 | 571 | { |
@@ -924,7 +923,7 @@ discard block |
||
| 924 | 923 | * Factory method for the lost password form |
| 925 | 924 | * |
| 926 | 925 | * @skipUpgrade |
| 927 | - * @return ChangePasswordForm Returns the lost password form |
|
| 926 | + * @return MemberAuthenticator\ChangePasswordForm Returns the lost password form |
|
| 928 | 927 | */ |
| 929 | 928 | public function ChangePasswordForm() |
| 930 | 929 | { |
@@ -1235,7 +1234,7 @@ discard block |
||
| 1235 | 1234 | /** |
| 1236 | 1235 | * Set to true to ignore access to disallowed actions, rather than returning permission failure |
| 1237 | 1236 | * Note that this is just a flag that other code needs to check with Security::ignore_disallowed_actions() |
| 1238 | - * @param $flag True or false |
|
| 1237 | + * @param boolean $flag True or false |
|
| 1239 | 1238 | */ |
| 1240 | 1239 | public static function set_ignore_disallowed_actions($flag) |
| 1241 | 1240 | { |