function ClassMetadata::hasGroupSequence
Overrides ClassMetadataInterface::hasGroupSequence
1 call to ClassMetadata::hasGroupSequence()
- ClassMetadata::setGroupSequenceProvider in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - Sets whether a group sequence provider should be used.
File
-
vendor/
symfony/ validator/ Mapping/ ClassMetadata.php, line 411
Class
- ClassMetadata
- Default implementation of {@link ClassMetadataInterface}.
Namespace
Symfony\Component\Validator\MappingCode
public function hasGroupSequence() : bool {
return isset($this->groupSequence) && \count($this->groupSequence->groups) > 0;
}