Nette\Security\Permission::removeAllow PHP Метод

removeAllow() публичный Метод

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
Результат self
    public function removeAllow($roles = self::ALL, $resources = self::ALL, $privileges = self::ALL)
    {
        $this->setRule(FALSE, self::ALLOW, $roles, $resources, $privileges);
        return $this;
    }