mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 03:42:32 +01:00
24 lines
354 B
PHP
24 lines
354 B
PHP
<?php namespace Oxbow\Repos;
|
|
|
|
|
|
use Oxbow\User;
|
|
|
|
class UserRepo
|
|
{
|
|
|
|
protected $user;
|
|
|
|
/**
|
|
* UserRepo constructor.
|
|
* @param $user
|
|
*/
|
|
public function __construct(User $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
|
|
public function getByEmail($email) {
|
|
return $this->user->where('email', '=', $email)->first();
|
|
}
|
|
} |