Devise\Users\Permissions\RuleList::isNotInGroups PHP Метод

isNotInGroups() защищенный Метод

Check to see if user is not in all the groups
protected isNotInGroups ( [type] $groupname ) : boolean
$groupname [type]
Результат boolean
    protected function isNotInGroups($groupname)
    {
        if (!$this->isLoggedIn()) {
            return false;
        }
        return !call_user_func_array([$this, 'isInGroups'], func_get_args());
    }