public function 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 drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php
Adds a constraint to this element.
ClassMetadata::addGetterConstraint in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php
Adds a constraint to the getter of the given property.
ClassMetadata::addPropertyConstraint in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php
Adds a constraint to the given property.
ClassMetadata::mergeConstraints in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php
Merges the constraints of the given metadata into this object.
ClassMetadata::setGroupSequence in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php
Sets the default group sequence for this class.

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/ClassMetadata.php, line 163

Class

ClassMetadata
Represents all the configured constraints on a given class.

Namespace

Symfony\Component\Validator\Mapping

Code

public function getDefaultGroup() {
  return $this->defaultGroup;
}