Devise\Users\Permissions\RuleList::isNotInGroups PHP Method

isNotInGroups() protected method

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