Owl\Repositories\Fluent\UserRepository::getByEmail PHP Method

getByEmail() public method

Get a user by email.
public getByEmail ( string $email ) : stdClass
$email string
return stdClass
    public function getByEmail($email)
    {
        return \DB::table($this->getTableName())->where('email', $email)->first();
    }