mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
Advanced app User
model code style fixes
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
namespace common\models;
|
||||
|
||||
use Yii;
|
||||
use yii\base\NotSupportedException;
|
||||
use yii\db\ActiveRecord;
|
||||
use Yii;
|
||||
use yii\web\IdentityInterface;
|
||||
|
||||
/**
|
||||
@ -25,7 +25,6 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
{
|
||||
const STATUS_DELETED = 0;
|
||||
const STATUS_ACTIVE = 10;
|
||||
|
||||
const ROLE_USER = 10;
|
||||
|
||||
/**
|
||||
@ -85,7 +84,7 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
/**
|
||||
* Finds user by username
|
||||
*
|
||||
* @param string $username
|
||||
* @param string $username
|
||||
* @return static|null
|
||||
*/
|
||||
public static function findByUsername($username)
|
||||
@ -96,12 +95,12 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
/**
|
||||
* Finds user by password reset token
|
||||
*
|
||||
* @param string $token password reset token
|
||||
* @param string $token password reset token
|
||||
* @return static|null
|
||||
*/
|
||||
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()) {
|
||||
@ -142,7 +141,7 @@ class User extends ActiveRecord implements IdentityInterface
|
||||
/**
|
||||
* Validates password
|
||||
*
|
||||
* @param string $password password to validate
|
||||
* @param string $password password to validate
|
||||
* @return boolean if password provided is valid for current user
|
||||
*/
|
||||
public function validatePassword($password)
|
||||
|
Reference in New Issue
Block a user