Owl\Repositories\Eloquent\UserRepository::getByEmail PHP 메소드

getByEmail() 공개 메소드

Get a user by email.
public getByEmail ( string $email ) : Illuminate\Database\Eloquent\Model
$email string
리턴 Illuminate\Database\Eloquent\Model
    public function getByEmail($email)
    {
        return $this->user->where('email', $email)->first();
    }