45 lines
931 B
PHP
45 lines
931 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of jwt-auth.
|
|
*
|
|
* (c) Sean Tymon <tymon148@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Tymon\JWTAuth\Providers\User;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class EloquentUserAdapter implements UserInterface
|
|
{
|
|
/**
|
|
* @var \Illuminate\Database\Eloquent\Model
|
|
*/
|
|
protected $user;
|
|
|
|
/**
|
|
* Create a new User instance.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Model $user
|
|
*/
|
|
public function __construct(Model $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
/**
|
|
* Get the user by the given key, value.
|
|
*
|
|
* @param mixed $key
|
|
* @param mixed $value
|
|
* @return Illuminate\Database\Eloquent\Model
|
|
*/
|
|
public function getBy($key, $value)
|
|
{
|
|
return $this->user->where($key, $value)->first();
|
|
}
|
|
}
|