public function ClassMetadata::getDefaultGroup in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Mapping/ClassMetadata.php \Symfony\Component\Validator\Mapping\ClassMetadata::getDefaultGroup()
Returns the name of the default group for this class.
For each class, the group "Default" is an alias for the group "<ClassName>", where <ClassName> is the non-namespaced name of the class. All constraints implicitly or explicitly assigned to group "Default" belong to both of these groups, unless the class defines a group sequence.
If a class defines a group sequence, validating the class in "Default" will validate the group sequence. The constraints assigned to "Default" can still be validated by validating the class in "<ClassName>".
Return value
string The name of the default group
5 calls to ClassMetadata::getDefaultGroup()
- ClassMetadata::addConstraint in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Adds a constraint.
- ClassMetadata::addGetterConstraint in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Adds a constraint to the getter of the given property.
- ClassMetadata::addPropertyConstraint in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Adds a constraint to the given property.
- ClassMetadata::mergeConstraints in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Merges the constraints of the given metadata into this object.
- ClassMetadata::setGroupSequence in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Sets the default group sequence for this class.
File
- vendor/
symfony/ validator/ Mapping/ ClassMetadata.php, line 214
Class
- ClassMetadata
- Default implementation of {@link ClassMetadataInterface}.
Namespace
Symfony\Component\Validator\MappingCode
public function getDefaultGroup() {
return $this->defaultGroup;
}