Adldap\Models\User::setEmail PHP Method

setEmail() public method

Keep in mind this will remove all other email addresses the user currently has.
public setEmail ( string $email ) : User
$email string
return User
    public function setEmail($email)
    {
        return $this->setFirstAttribute($this->schema->email(), $email);
    }