LdapTools\Security\Flags::remove PHP Method

remove() public method

Remove a flag from the value.
public remove ( $flags )
$flags
    public function remove(...$flags)
    {
        foreach ($flags as $flag) {
            if ($this->has($flag)) {
                $this->flags = $this->flags ^ (int) $flag;
            }
        }
        return $this;
    }