Nette\Security\Permission::removeAllow PHP Method

removeAllow() public method

Removes "allow" permissions from the list in the context of the given Roles, Resources, and privileges.
public removeAllow ( $roles = self::ALL, $resources = self::ALL, $privileges = self::ALL ) : self
return self
    public function removeAllow($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL)
    {
        $this->setRule(FALSE, self::ALLOW, $roles, $resources, $privileges);
        return $this;
    }