Completed
Push — master ( 989fd4...c30846 )
by Xu
73:44 queued 33:19
created
src/mail/text/user/welcome.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 <?= Yii::t('yuncms', 'Hello') ?>,
8 8
 
9 9
 <?= Yii::t('yuncms', 'Your account on {0} has been created.', Yii::$app->name) ?>.
10
-<?php if (Yii::$app->settings->get('enableGeneratingPassword','user')): ?>
10
+<?php if (Yii::$app->settings->get('enableGeneratingPassword', 'user')): ?>
11 11
     <?= Yii::t('yuncms', 'We have generated a password for you') ?>:
12 12
     <?= $user->password ?>
13 13
 <?php endif ?>
Please login to merge, or discard this patch.
src/mail/user/welcome.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
 <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
15 15
     <?= Yii::t('yuncms', 'Your account on {0} has been created.', Yii::$app->name) ?>.
16
-    <?php if ($showPassword || Yii::$app->settings->get('enableGeneratingPassword','user')): ?>
16
+    <?php if ($showPassword || Yii::$app->settings->get('enableGeneratingPassword', 'user')): ?>
17 17
         <?= Yii::t('yuncms', 'We have generated a password for you') ?>: <strong><?= $user->password ?></strong>
18 18
     <?php endif ?>
19 19
 
Please login to merge, or discard this patch.
src/user/models/SettingsForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
             'emailRequired' => ['email', 'required'],
92 92
             'emailTrim' => ['email', 'filter', 'filter' => 'trim'],
93 93
             'emailPattern' => ['email', 'email'],
94
-            'emailUsernameUnique' => [['email', 'username'], 'unique', 'when' => function ($model, $attribute) {
94
+            'emailUsernameUnique' => [['email', 'username'], 'unique', 'when' => function($model, $attribute) {
95 95
                 return $this->user->$attribute != $model->$attribute;
96 96
             }, 'targetClass' => User::class],
97 97
             'newPasswordLength' => ['new_password', 'string', 'min' => 6],
98 98
             'currentPasswordRequired' => ['current_password', 'required'],
99
-            'currentPasswordValidate' => ['current_password', function ($attr) {
99
+            'currentPasswordValidate' => ['current_password', function($attr) {
100 100
                 if (!PasswordHelper::validate($this->$attr, $this->user->password_hash)) {
101 101
                     $this->addError($attr, Yii::t('yuncms', 'Current password is not valid'));
102 102
                 }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             if ($this->email == $this->user->email && $this->user->unconfirmed_email != null) {
141 141
                 $this->user->unconfirmed_email = null;
142 142
             } elseif ($this->email != $this->user->email) {
143
-                switch (Yii::$app->settings->get('emailChangeStrategy','user')) {
143
+                switch (Yii::$app->settings->get('emailChangeStrategy', 'user')) {
144 144
                     case UserSettings::STRATEGY_INSECURE:
145 145
                         $this->insecureEmailChange();
146 146
                         break;
Please login to merge, or discard this patch.
src/user/models/ResendForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             'emailRequired' => ['email', 'required'],
50 50
             'emailPattern' => ['email', 'email'],
51 51
             'emailExist' => ['email', 'exist', 'targetClass' => User::class],
52
-            'emailConfirmed' => ['email', function () {
52
+            'emailConfirmed' => ['email', function() {
53 53
                 if ($this->user != null && $this->user->isEmailConfirmed) {
54 54
                     $this->addError('email', Yii::t('yuncms', 'This account has already been confirmed'));
55 55
                 }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         /** @var UserToken $token */
89 89
         $token = new UserToken(['user_id' => $this->user->id, 'type' => UserToken::TYPE_CONFIRMATION]);
90 90
         $token->save(false);
91
-        Yii::$app->sendMail($this->user->email,Yii::t('yuncms', 'Confirm account on {0}', Yii::$app->name),'user/confirmation',['user' => $this->user, 'token' => $token]);
91
+        Yii::$app->sendMail($this->user->email, Yii::t('yuncms', 'Confirm account on {0}', Yii::$app->name), 'user/confirmation', ['user' => $this->user, 'token' => $token]);
92 92
         Yii::$app->session->setFlash('info', Yii::t('yuncms', 'A message has been sent to your email address. It contains a confirmation link that you must click to complete registration.'));
93 93
         return true;
94 94
     }
Please login to merge, or discard this patch.
src/user/models/RecoveryForm.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
             'emailRequired' => ['email', 'required'],
64 64
             'emailPattern' => ['email', 'email'],
65 65
             'emailExist' => ['email', 'exist', 'targetClass' => User::class, 'message' => Yii::t('yuncms', 'There is no user with this email address')],
66
-            'emailUnconfirmed' => ['email', function ($attribute) {
66
+            'emailUnconfirmed' => ['email', function($attribute) {
67 67
                 $this->user = User::findByEmail($this->email);
68
-                if ($this->user !== null && Yii::$app->settings->get('enableConfirmation','user') && !$this->user->isEmailConfirmed) {
68
+                if ($this->user !== null && Yii::$app->settings->get('enableConfirmation', 'user') && !$this->user->isEmailConfirmed) {
69 69
                     $this->addError($attribute, Yii::t('yuncms', 'You need to confirm your email address.'));
70 70
                 }
71 71
             }],
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
     {
84 84
         if ($this->validate()) {
85 85
             /** @var UserToken $token */
86
-            $token = new UserToken([ 'user_id' => $this->user->id, 'type' => UserToken::TYPE_RECOVERY]);
86
+            $token = new UserToken(['user_id' => $this->user->id, 'type' => UserToken::TYPE_RECOVERY]);
87 87
             $token->save(false);
88
-            Yii::$app->sendMail($this->user->email,Yii::t('yuncms', 'Complete password reset on {0}', Yii::$app->name),'user/recovery',['user' => $this->user, 'token' => $token]);
88
+            Yii::$app->sendMail($this->user->email, Yii::t('yuncms', 'Complete password reset on {0}', Yii::$app->name), 'user/recovery', ['user' => $this->user, 'token' => $token]);
89 89
             Yii::$app->session->setFlash('info', Yii::t('yuncms', 'An email has been sent with instructions for resetting your password'));
90 90
             return true;
91 91
         }
Please login to merge, or discard this patch.
src/user/migrations/m180223_102826Create_user_profile_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             'location' => $this->string()->comment('Location'),
31 31
             'address' => $this->string()->comment('Address'),
32 32
             'website' => $this->string()->comment('Website'),
33
-            'timezone' => $this->string(100)->comment('Timezone'),//默认格林威治时间
33
+            'timezone' => $this->string(100)->comment('Timezone'), //默认格林威治时间
34 34
             'birthday' => $this->string(15)->comment('Birthday'),
35 35
             'current' => $this->smallInteger(1)->comment('Current'),
36 36
             'qq' => $this->string(11)->comment('QQ'),
Please login to merge, or discard this patch.
src/db/jobs/CreateActiveRecordJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     {
43 43
         /** @var ActiveRecord $class */
44 44
         $class = $this->modelClass;
45
-        $class::create($this->attributes,$this->runValidation);
45
+        $class::create($this->attributes, $this->runValidation);
46 46
     }
47 47
 
48 48
     /**
Please login to merge, or discard this patch.
src/user/Bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         if ($app->hasModule('user') && ($module = $app->getModule('user')) instanceof Module) {
31 31
             //监听用户活动时间
32 32
             /** @var \yii\web\UserEvent $event */
33
-            $app->on(Application::EVENT_AFTER_REQUEST, function ($event) use ($app) {
33
+            $app->on(Application::EVENT_AFTER_REQUEST, function($event) use ($app) {
34 34
                 if (!$app->user->isGuest && Yii::$app->has('queue')) {
35 35
                     $user = UserExtra::findOne(['user_id' => $app->user->id]);
36 36
                     $user->updateAttributesAsync(['last_visit' => time()]);
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
             //监听用户登录事件
41 41
             /** @var \yii\web\UserEvent $event */
42
-            $app->user->on(User::EVENT_AFTER_LOGIN, function ($event) use ($app) {
42
+            $app->user->on(User::EVENT_AFTER_LOGIN, function($event) use ($app) {
43 43
                 //记录最后登录时间记录最后登录IP记录登录次数
44 44
                 $user = UserExtra::findOne(['user_id' => $app->user->id]);
45 45
                 $user->updateAttributesAsync(['login_at' => time(), 'login_ip' => Yii::$app->request->userIP]);
Please login to merge, or discard this patch.
src/gii/generators/model/query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     {
59 59
         return parent::one($db);
60 60
     }
61
-<?php if(isset($labels['created_at'])): ?>
61
+<?php if (isset($labels['created_at'])): ?>
62 62
 
63 63
     /**
64 64
      * 热门模型
Please login to merge, or discard this patch.