@@ -51,7 +51,7 @@ |
||
| 51 | 51 | /** |
| 52 | 52 | * Create a new UnsavedRelationList |
| 53 | 53 | * |
| 54 | - * @param array $baseClass |
|
| 54 | + * @param string $baseClass |
|
| 55 | 55 | * @param string $relationName |
| 56 | 56 | * @param string $dataClass The DataObject class used in the relation |
| 57 | 57 | */ |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * Find version of this object in the given stage |
| 159 | 159 | * |
| 160 | 160 | * @param string $stage |
| 161 | - * @return DataObject|Versioned |
|
| 161 | + * @return DataObject|null |
|
| 162 | 162 | * @throws UnexpectedDataException |
| 163 | 163 | */ |
| 164 | 164 | protected function getObjectInStage($stage) |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | |
| 173 | 173 | /** |
| 174 | 174 | * Find latest version of this object |
| 175 | - * @return DataObject|Versioned |
|
| 175 | + * @return DataObject|null |
|
| 176 | 176 | * @throws UnexpectedDataException |
| 177 | 177 | */ |
| 178 | 178 | protected function getObjectLatestVersion() |
@@ -1086,7 +1086,7 @@ discard block |
||
| 1086 | 1086 | /** |
| 1087 | 1087 | * Find objects in the given relationships, merging them into the given list |
| 1088 | 1088 | * |
| 1089 | - * @param array $source Config property to extract relationships from |
|
| 1089 | + * @param string $source Config property to extract relationships from |
|
| 1090 | 1090 | * @param bool $recursive True if recursive |
| 1091 | 1091 | * @param ArrayList $list Optional list to add items to |
| 1092 | 1092 | * @return ArrayList The list |
@@ -1198,7 +1198,7 @@ discard block |
||
| 1198 | 1198 | /** |
| 1199 | 1199 | * Check if the current user can delete this record from live |
| 1200 | 1200 | * |
| 1201 | - * @param null $member |
|
| 1201 | + * @param Member|null $member |
|
| 1202 | 1202 | * @return mixed |
| 1203 | 1203 | */ |
| 1204 | 1204 | public function canUnpublish($member = null) |
@@ -1312,7 +1312,7 @@ discard block |
||
| 1312 | 1312 | * Extend permissions to include additional security for objects that are not published to live. |
| 1313 | 1313 | * |
| 1314 | 1314 | * @param Member $member |
| 1315 | - * @return bool|null |
|
| 1315 | + * @return false|null |
|
| 1316 | 1316 | */ |
| 1317 | 1317 | public function canView($member = null) |
| 1318 | 1318 | { |
@@ -1390,7 +1390,7 @@ discard block |
||
| 1390 | 1390 | * |
| 1391 | 1391 | * @param string $stage |
| 1392 | 1392 | * @param Member $member |
| 1393 | - * @return bool |
|
| 1393 | + * @return boolean|string |
|
| 1394 | 1394 | */ |
| 1395 | 1395 | public function canViewStage($stage = 'Live', $member = null) |
| 1396 | 1396 | { |
@@ -1459,7 +1459,7 @@ discard block |
||
| 1459 | 1459 | /** |
| 1460 | 1460 | * Determines if the current draft version is the same as live or rather, that there are no outstanding draft changes |
| 1461 | 1461 | * |
| 1462 | - * @return bool |
|
| 1462 | + * @return string |
|
| 1463 | 1463 | */ |
| 1464 | 1464 | public function latestPublished() |
| 1465 | 1465 | { |
@@ -2554,7 +2554,7 @@ discard block |
||
| 2554 | 2554 | /** |
| 2555 | 2555 | * Returns an array of possible stages. |
| 2556 | 2556 | * |
| 2557 | - * @return array |
|
| 2557 | + * @return string[] |
|
| 2558 | 2558 | */ |
| 2559 | 2559 | public function getVersionedStages() |
| 2560 | 2560 | { |
@@ -137,7 +137,7 @@ |
||
| 137 | 137 | * Remove a previously registered authenticator |
| 138 | 138 | * |
| 139 | 139 | * @param string $authenticator Name of the authenticator class to register |
| 140 | - * @return bool Returns TRUE on success, FALSE otherwise. |
|
| 140 | + * @return boolean|null Returns TRUE on success, FALSE otherwise. |
|
| 141 | 141 | */ |
| 142 | 142 | public static function unregister_authenticator($authenticator) |
| 143 | 143 | { |
@@ -42,6 +42,9 @@ discard block |
||
| 42 | 42 | Requirements::javascript(FRAMEWORK_ADMIN_DIR . '/client/dist/js/CMSSecurity.js'); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | + /** |
|
| 46 | + * @param string $action |
|
| 47 | + */ |
|
| 45 | 48 | public function Link($action = null) |
| 46 | 49 | { |
| 47 | 50 | /** @skipUpgrade */ |
@@ -61,6 +64,9 @@ discard block |
||
| 61 | 64 | return null; |
| 62 | 65 | } |
| 63 | 66 | |
| 67 | + /** |
|
| 68 | + * @param string $title |
|
| 69 | + */ |
|
| 64 | 70 | public function getResponseController($title) |
| 65 | 71 | { |
| 66 | 72 | // Use $this to prevent use of Page to render underlying templates |
@@ -409,6 +409,7 @@ |
||
| 409 | 409 | * Overloaded to ensure the code is always descent. |
| 410 | 410 | * |
| 411 | 411 | * @param string |
| 412 | + * @param string $val |
|
| 412 | 413 | */ |
| 413 | 414 | public function setCode($val) |
| 414 | 415 | { |
@@ -1622,7 +1622,7 @@ discard block |
||
| 1622 | 1622 | * This is likely to be customized for social sites etc. with a looser permission model. |
| 1623 | 1623 | * |
| 1624 | 1624 | * @param Member $member |
| 1625 | - * @return bool |
|
| 1625 | + * @return boolean|string |
|
| 1626 | 1626 | */ |
| 1627 | 1627 | public function canView($member = null) |
| 1628 | 1628 | { |
@@ -1653,7 +1653,7 @@ discard block |
||
| 1653 | 1653 | * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions |
| 1654 | 1654 | * |
| 1655 | 1655 | * @param Member $member |
| 1656 | - * @return bool |
|
| 1656 | + * @return boolean|string |
|
| 1657 | 1657 | */ |
| 1658 | 1658 | public function canEdit($member = null) |
| 1659 | 1659 | { |
@@ -1688,7 +1688,7 @@ discard block |
||
| 1688 | 1688 | * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions |
| 1689 | 1689 | * |
| 1690 | 1690 | * @param Member $member |
| 1691 | - * @return bool |
|
| 1691 | + * @return boolean|string |
|
| 1692 | 1692 | */ |
| 1693 | 1693 | public function canDelete($member = null) |
| 1694 | 1694 | { |
@@ -157,7 +157,7 @@ |
||
| 157 | 157 | * @param Form $form Optional: If passed, better error messages can be |
| 158 | 158 | * produced by using |
| 159 | 159 | * {@link Form::sessionMessage()} |
| 160 | - * @return bool|Member Returns FALSE if authentication fails, otherwise |
|
| 160 | + * @return Member|null Returns FALSE if authentication fails, otherwise |
|
| 161 | 161 | * the member object |
| 162 | 162 | * @see Security::setDefaultAdmin() |
| 163 | 163 | */ |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | * Eg: $this->characterStrength(3, array("lowercase", "uppercase", "digits", "punctuation")) |
| 48 | 48 | * |
| 49 | 49 | * @param int $minScore The minimum number of character tests that must pass |
| 50 | - * @param array $testNames The names of the tests to perform |
|
| 50 | + * @param string[] $testNames The names of the tests to perform |
|
| 51 | 51 | * @return $this |
| 52 | 52 | */ |
| 53 | 53 | public function characterStrength($minScore, $testNames) |