Completed
Push — master ( 8c401a...033d43 )
by vistart
19:14
created
Organization.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.