Newscoop\Services\NotificationService::findByGroup PHP Method

findByGroup() private method

Find emails allowed by group role but those denied by user role
private findByGroup ( ) : array
return array
    private function findByGroup()
    {
        return array_diff($this->executeQuery(self::GROUP_DQL, Rule::ALLOW), $this->executeQuery(self::USER_DQL, Rule::DENY));
    }