Silber\Bouncer\Database\HasRoles::retract PHP Method

retract() public method

Retract the given role from the model.
public retract ( Role | string $role )
$role Role | string
    public function retract($role)
    {
        (new RemovesRole($role))->from($this);
        return $this;
    }