Test Failed
Push — master ( cb8c8d...a9ed64 )
by vistart
09:27
created
Organization.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
 
372 372
     /**
373 373
      * Get subordinate limit query.
374
-     * @return null|BaseBlameableQuery
374
+     * @return null|\yii\db\ActiveQuery
375 375
      */
376 376
     public function getSubordinateLimit()
377 377
     {
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
 
386 386
     /**
387 387
      * Get member limit query.
388
-     * @return null|BaseBlameableQuery
388
+     * @return null|\yii\db\ActiveQuery
389 389
      */
390 390
     public function getMemberLimit()
391 391
     {
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 
400 400
     /**
401 401
      * @param string|null $item If you want to get all settings, please set it null.
402
-     * @return null
402
+     * @return null|\yii\db\ActiveQuery
403 403
      */
404 404
     public function getSettings($item = null)
405 405
     {
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
 
781 781
     /**
782 782
      * Add administrator.
783
-     * @param User|integer|string $user User instance, or its GUID or ID.
783
+     * @param User $user User instance, or its GUID or ID.
784 784
      * @return boolean
785 785
      * @throws \Exception
786 786
      * @throws IntegrityException
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
 
897 897
     /**
898 898
      * @param bool $value
899
-     * @return bool
899
+     * @return boolean|null
900 900
      */
901 901
     public function setIsExcludeOtherMembers($value = true)
902 902
     {
@@ -920,7 +920,7 @@  discard block
 block discarded – undo
920 920
 
921 921
     /**
922 922
      * @param bool $value
923
-     * @return bool
923
+     * @return boolean|null
924 924
      */
925 925
     public function setIsDisallowMemberJoinOther($value = true)
926 926
     {
@@ -944,7 +944,7 @@  discard block
 block discarded – undo
944 944
 
945 945
     /**
946 946
      * @param bool $value
947
-     * @return bool
947
+     * @return boolean|null
948 948
      */
949 949
     public function setIsOnlyAcceptCurrentOrgMember($value = true)
950 950
     {
@@ -971,7 +971,7 @@  discard block
 block discarded – undo
971 971
 
972 972
     /**
973 973
      * @param bool $value
974
-     * @return bool
974
+     * @return boolean|null
975 975
      */
976 976
     public function setIsOnlyAcceptSuperiorOrgMember($value = true)
977 977
     {
Please login to merge, or discard this patch.