Returns the constraints of the given group and global ones (* group).
string $group The group name:
array An array with all Constraint instances belonging to the group
public function findConstraints($group) {
return isset($this->constraintsByGroup[$group]) ? $this->constraintsByGroup[$group] : array();
}