Owl\Repositories\Fluent\UserRepository::getByEmail PHP Méthode

getByEmail() public méthode

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