@@ -60,7 +60,7 @@ |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | - * @param mixed $joinClass |
|
| 63 | + * @param string $joinClass |
|
| 64 | 64 | * @return $this |
| 65 | 65 | */ |
| 66 | 66 | public function setJoinClass($joinClass) |
@@ -398,7 +398,6 @@ discard block |
||
| 398 | 398 | * @see SQLConditionalExpression::addWhere() for syntax examples |
| 399 | 399 | * |
| 400 | 400 | * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries |
| 401 | - * @param mixed $where,... Unlimited additional predicates |
|
| 402 | 401 | * @return $this Self reference |
| 403 | 402 | */ |
| 404 | 403 | public function setWhere($where) |
@@ -485,7 +484,6 @@ discard block |
||
| 485 | 484 | * </code> |
| 486 | 485 | * |
| 487 | 486 | * @param mixed $where Predicate(s) to set, as escaped SQL statements or paramaterised queries |
| 488 | - * @param mixed $where,... Unlimited additional predicates |
|
| 489 | 487 | * @return $this Self reference |
| 490 | 488 | */ |
| 491 | 489 | public function addWhere($where) |
@@ -502,7 +500,6 @@ discard block |
||
| 502 | 500 | * @see SQLConditionalExpression::addWhere() |
| 503 | 501 | * |
| 504 | 502 | * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries |
| 505 | - * @param mixed $filters,... Unlimited additional predicates |
|
| 506 | 503 | * @return $this Self reference |
| 507 | 504 | */ |
| 508 | 505 | public function setWhereAny($filters) |
@@ -517,7 +514,6 @@ discard block |
||
| 517 | 514 | * @see SQLConditionalExpression::addWhere() |
| 518 | 515 | * |
| 519 | 516 | * @param mixed $filters Predicate(s) to set, as escaped SQL statements or paramaterised queries |
| 520 | - * @param mixed $filters,... Unlimited additional predicates |
|
| 521 | 517 | * @return $this Self reference |
| 522 | 518 | */ |
| 523 | 519 | public function addWhereAny($filters) |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | /** |
| 16 | 16 | * Any number of foreign keys to apply to this list |
| 17 | 17 | * |
| 18 | - * @return string|array|null |
|
| 18 | + * @return string|null |
|
| 19 | 19 | */ |
| 20 | 20 | public function getForeignID() |
| 21 | 21 | { |
@@ -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() |
@@ -1084,7 +1084,7 @@ discard block |
||
| 1084 | 1084 | /** |
| 1085 | 1085 | * Find objects in the given relationships, merging them into the given list |
| 1086 | 1086 | * |
| 1087 | - * @param array $source Config property to extract relationships from |
|
| 1087 | + * @param string $source Config property to extract relationships from |
|
| 1088 | 1088 | * @param bool $recursive True if recursive |
| 1089 | 1089 | * @param ArrayList $list Optional list to add items to |
| 1090 | 1090 | * @return ArrayList The list |
@@ -1196,7 +1196,7 @@ discard block |
||
| 1196 | 1196 | /** |
| 1197 | 1197 | * Check if the current user can delete this record from live |
| 1198 | 1198 | * |
| 1199 | - * @param null $member |
|
| 1199 | + * @param Member|null $member |
|
| 1200 | 1200 | * @return mixed |
| 1201 | 1201 | */ |
| 1202 | 1202 | public function canUnpublish($member = null) |
@@ -1310,7 +1310,7 @@ discard block |
||
| 1310 | 1310 | * Extend permissions to include additional security for objects that are not published to live. |
| 1311 | 1311 | * |
| 1312 | 1312 | * @param Member $member |
| 1313 | - * @return bool|null |
|
| 1313 | + * @return false|null |
|
| 1314 | 1314 | */ |
| 1315 | 1315 | public function canView($member = null) |
| 1316 | 1316 | { |
@@ -1388,7 +1388,7 @@ discard block |
||
| 1388 | 1388 | * |
| 1389 | 1389 | * @param string $stage |
| 1390 | 1390 | * @param Member $member |
| 1391 | - * @return bool |
|
| 1391 | + * @return boolean|string |
|
| 1392 | 1392 | */ |
| 1393 | 1393 | public function canViewStage($stage = 'Live', $member = null) |
| 1394 | 1394 | { |
@@ -1457,7 +1457,7 @@ discard block |
||
| 1457 | 1457 | /** |
| 1458 | 1458 | * Determines if the current draft version is the same as live or rather, that there are no outstanding draft changes |
| 1459 | 1459 | * |
| 1460 | - * @return bool |
|
| 1460 | + * @return string |
|
| 1461 | 1461 | */ |
| 1462 | 1462 | public function latestPublished() |
| 1463 | 1463 | { |
@@ -2552,7 +2552,7 @@ discard block |
||
| 2552 | 2552 | /** |
| 2553 | 2553 | * Returns an array of possible stages. |
| 2554 | 2554 | * |
| 2555 | - * @return array |
|
| 2555 | + * @return string[] |
|
| 2556 | 2556 | */ |
| 2557 | 2557 | public function getVersionedStages() |
| 2558 | 2558 | { |
@@ -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 |
@@ -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 | */ |