@@ -120,7 +120,7 @@ |
||
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Set Organization. |
123 | - * @param BaseOrganization $organization |
|
123 | + * @param Organization $organization |
|
124 | 124 | * @return boolean |
125 | 125 | */ |
126 | 126 | public function setOrganization($organization) |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @param string $name |
162 | 162 | * @param Organization $parent |
163 | 163 | * @param string $nickname |
164 | - * @param string $gravatar_type |
|
164 | + * @param integer $gravatar_type |
|
165 | 165 | * @param string $gravatar |
166 | 166 | * @param string $timezone |
167 | 167 | * @param string $description |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | * @param string $name |
178 | 178 | * @param Organization $parent |
179 | 179 | * @param string $nickname |
180 | - * @param string $gravatar_type |
|
180 | + * @param integer $gravatar_type |
|
181 | 181 | * @param string $gravatar |
182 | 182 | * @param string $timezone |
183 | 183 | * @param string $description |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Check access. |
51 | - * @param Organization $org |
|
51 | + * @param \rhosocial\organization\Organization $org |
|
52 | 52 | * @param string|integer $id User ID. If access checking passed, it will be re-assigned with the User model. |
53 | 53 | * @param User $user |
54 | 54 | * @return boolean |
@@ -25,7 +25,6 @@ |
||
25 | 25 | { |
26 | 26 | /** |
27 | 27 | * |
28 | - * @param string $orgOnly |
|
29 | 28 | * @return string rendering result. |
30 | 29 | */ |
31 | 30 | public function run() |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Check access. |
52 | - * @param $org |
|
52 | + * @param \rhosocial\organization\Organization $org |
|
53 | 53 | * @param $user |
54 | 54 | * @return bool |
55 | 55 | * @throws UnauthorizedManageMemberException |
@@ -110,8 +110,8 @@ discard block |
||
110 | 110 | * Assign SetUpOrganization permission and set upper limit. |
111 | 111 | * If the permission has been assigned, it will only change the limit. |
112 | 112 | * @param User|string|integer $user |
113 | - * @param string|integer $limit |
|
114 | - * @return boolean |
|
113 | + * @param integer $limit |
|
114 | + * @return integer |
|
115 | 115 | */ |
116 | 116 | public function actionAssignSetUpOrganization($user, $limit = 1) |
117 | 117 | { |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | /** |
167 | 167 | * Revoke SetUpOrganization permission. |
168 | 168 | * @param User|string|integer $user |
169 | - * @return boolean |
|
169 | + * @return integer |
|
170 | 170 | */ |
171 | 171 | public function actionRevokeSetUpOrganization($user) |
172 | 172 | { |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * Remove administrator |
290 | 290 | * @param Organization|string|integer $organization |
291 | 291 | * @param User|string|integer $user |
292 | - * @param boolean $keepMember |
|
292 | + * @param string|boolean $keepMember |
|
293 | 293 | * @throws Exception |
294 | 294 | * @return integer |
295 | 295 | */ |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | |
363 | 363 | /** |
364 | 364 | * Get subordinate limit query. |
365 | - * @return null|BaseBlameableQuery |
|
365 | + * @return null|\yii\db\ActiveQuery |
|
366 | 366 | */ |
367 | 367 | public function getSubordinateLimit() |
368 | 368 | { |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | |
377 | 377 | /** |
378 | 378 | * Get member limit query. |
379 | - * @return null|BaseBlameableQuery |
|
379 | + * @return null|\yii\db\ActiveQuery |
|
380 | 380 | */ |
381 | 381 | public function getMemberLimit() |
382 | 382 | { |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | |
391 | 391 | /** |
392 | 392 | * @param string|null $item If you want to get all settings, please set it null. |
393 | - * @return null |
|
393 | + * @return null|\yii\db\ActiveQuery |
|
394 | 394 | */ |
395 | 395 | public function getSettings($item = null) |
396 | 396 | { |
@@ -405,8 +405,8 @@ discard block |
||
405 | 405 | } |
406 | 406 | |
407 | 407 | /** |
408 | - * @param $item |
|
409 | - * @param $value |
|
408 | + * @param string $item |
|
409 | + * @param string $value |
|
410 | 410 | * @return bool|null Null if organization setting not enabled. |
411 | 411 | */ |
412 | 412 | public function setSetting($item, $value) |
@@ -759,7 +759,7 @@ discard block |
||
759 | 759 | |
760 | 760 | /** |
761 | 761 | * Add administrator. |
762 | - * @param User|integer|string $user User instance, or its GUID or ID. |
|
762 | + * @param User $user User instance, or its GUID or ID. |
|
763 | 763 | * @return boolean |
764 | 764 | * @throws \Exception |
765 | 765 | * @throws IntegrityException |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | |
876 | 876 | /** |
877 | 877 | * @param bool $value |
878 | - * @return bool |
|
878 | + * @return boolean|null |
|
879 | 879 | */ |
880 | 880 | public function setIsExcludeOtherMembers($value = true) |
881 | 881 | { |
@@ -899,7 +899,7 @@ discard block |
||
899 | 899 | |
900 | 900 | /** |
901 | 901 | * @param bool $value |
902 | - * @return bool |
|
902 | + * @return boolean|null |
|
903 | 903 | */ |
904 | 904 | public function setIsDisallowMemberJoinOther($value = true) |
905 | 905 | { |
@@ -923,7 +923,7 @@ discard block |
||
923 | 923 | |
924 | 924 | /** |
925 | 925 | * @param bool $value |
926 | - * @return bool |
|
926 | + * @return boolean|null |
|
927 | 927 | */ |
928 | 928 | public function setIsOnlyAcceptCurrentOrgMember($value = true) |
929 | 929 | { |
@@ -947,7 +947,7 @@ discard block |
||
947 | 947 | |
948 | 948 | /** |
949 | 949 | * @param bool $value |
950 | - * @return bool |
|
950 | + * @return boolean|null |
|
951 | 951 | */ |
952 | 952 | public function setIsOnlyAcceptSuperiorOrgMember($value = true) |
953 | 953 | { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Check access. |
51 | - * @param $org |
|
51 | + * @param \rhosocial\organization\Organization $org |
|
52 | 52 | * @param $user |
53 | 53 | * @return bool |
54 | 54 | * @throws UnauthorizedManageProfileException |