mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-24 18:51:27 +08:00
Merge pull request #4117 from creocoder/apps-advanced-common-user-code-style-fixes
[skip-ci] Advanced app `User` model code style fixes
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
<?php
|
||||
namespace common\models;
|
||||
|
||||
use yii\base\NotSupportedException;
|
||||
use yii\db\ActiveRecord;
|
||||
use Yii;
|
||||
use yii\base\NotSupportedException;
|
||||
use yii\behaviors\TimestampBehavior;
|
||||
use yii\db\ActiveRecord;
|
||||
use yii\web\IdentityInterface;
|
||||
|
||||
/**
|
||||
@@ -25,7 +26,6 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
{
|
||||
const STATUS_DELETED = 0;
|
||||
const STATUS_ACTIVE = 10;
|
||||
|
||||
const ROLE_USER = 10;
|
||||
|
||||
/**
|
||||
@@ -42,13 +42,7 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
public function behaviors()
|
||||
{
|
||||
return [
|
||||
'timestamp' => [
|
||||
'class' => 'yii\behaviors\TimestampBehavior',
|
||||
'attributes' => [
|
||||
ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],
|
||||
ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],
|
||||
],
|
||||
],
|
||||
TimestampBehavior::className(),
|
||||
];
|
||||
}
|
||||
|
||||
@@ -101,7 +95,7 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
*/
|
||||
public static function findByPasswordResetToken($token)
|
||||
{
|
||||
$expire = \Yii::$app->params['user.passwordResetTokenExpire'];
|
||||
$expire = Yii::$app->params['user.passwordResetTokenExpire'];
|
||||
$parts = explode('_', $token);
|
||||
$timestamp = (int) end($parts);
|
||||
if ($timestamp + $expire < time()) {
|
||||
|
||||
Reference in New Issue
Block a user