Fix codestyle
authorjoshuaruesweg <ruesweg@woltlab.com>
Wed, 3 Jun 2020 14:54:18 +0000 (16:54 +0200)
committerjoshuaruesweg <ruesweg@woltlab.com>
Wed, 3 Jun 2020 14:54:18 +0000 (16:54 +0200)
wcfsetup/install/files/lib/data/user/User.class.php
wcfsetup/install/files/lib/data/user/UserAction.class.php
wcfsetup/install/files/lib/system/condition/UserStateCondition.class.php

index e2a4719fab4e353572d6e3167ef29e0740505d97..8cbe1a7818016c007903d591f0e1fd5320eb487f 100644 (file)
@@ -35,7 +35,7 @@ use wcf\util\UserUtil;
  * @property-read      string          $banReason                      reason why the user is banned
  * @property-read      integer         $banExpires                     timestamp at which the banned user is automatically unbanned
  * @property-read      integer         $activationCode                 flag which determines, whether the user is activated (for legacy reasons an random integer, if the user is *not* activated)
- * @property-read      string          $emailConfirmed                 code sent to the user's email address used for account activation
+ * @property-read      string          $emailConfirmed                 code sent to the user's email address used for account activation or null if the email is confirmed
  * @property-read      integer         $lastLostPasswordRequestTime    timestamp at which the user has reported that they lost their password or 0 if password has not been reported as lost
  * @property-read      string          $lostPasswordKey                code used for authenticating setting new password after password loss or empty if password has not been reported as lost
  * @property-read      integer         $lastUsernameChange             timestamp at which the user changed their name the last time or 0 if username has not been changed
index 9d011bf2a8210b8bb6548723bcce5a0849c0ee71..4495be499b88986d64703460ccc1addd69268c8b 100644 (file)
@@ -636,7 +636,6 @@ class UserAction extends AbstractDatabaseObjectAction implements IClipboardActio
        
        /**
         * Marks the email address as confirmed. It also enables the user, iff the register method is user activation only.
-
         * @since       5.3
         */
        public function confirmEmail() {
@@ -658,7 +657,7 @@ class UserAction extends AbstractDatabaseObjectAction implements IClipboardActio
        
        /**
         * Marks the email address as unconfirmed.
-        * @since 5.3
+        * @since       5.3
         */
        public function unconfirmEmail() {
                if (empty($this->objects)) $this->readObjects();
index b2336559a383a2379445fc1b8576b3e272d62c8b..98dd6d5b4437f9410ebb999c264c3f0bfd19bd8d 100644 (file)
@@ -48,14 +48,14 @@ class UserStateCondition extends AbstractSingleFieldCondition implements IConten
        protected $userIsNotBanned = 0;
        
        /**
-        * true if the the user is be email confirmed
+        * true if the the user has confirmed their email address
         *
         * @var integer
         */
        protected $userIsEmailConfirmed = 0;
        
        /**
-        * true if the the user is not be email confirmed
+        * true if the the user has not confirmed their email address
         * @var integer
         */
        protected $userIsNotEmailConfirmed = 0;