1
0
mirror of https://github.com/flarum/core.git synced 2025-10-28 22:07:33 +01:00
Files
php-flarum/src/User/PasswordToken.php
Franz Liedke d492579638 Apply fixes from StyleCI
[ci skip] [skip ci]
2019-11-28 00:16:50 +00:00

69 lines
1.3 KiB
PHP

<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\User;
use Carbon\Carbon;
use Flarum\Database\AbstractModel;
use Illuminate\Support\Str;
/**
* @property string $token
* @property \Carbon\Carbon $created_at
* @property int $user_id
*/
class PasswordToken extends AbstractModel
{
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = ['created_at'];
/**
* Use a custom primary key for this model.
*
* @var bool
*/
public $incrementing = false;
/**
* {@inheritdoc}
*/
protected $primaryKey = 'token';
/**
* Generate a password token for the specified user.
*
* @param int $userId
* @return static
*/
public static function generate(int $userId)
{
$token = new static;
$token->token = Str::random(40);
$token->user_id = $userId;
$token->created_at = Carbon::now();
return $token;
}
/**
* Define the relationship with the owner of this password token.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function user()
{
return $this->belongsTo(User::class);
}
}