interface GroupSequenceProviderInterface
Defines the interface for a group sequence provider.
Hierarchy
- interface \Symfony\Component\Validator\GroupSequenceProviderInterface
Expanded class hierarchy of GroupSequenceProviderInterface
All classes that implement GroupSequenceProviderInterface
2 files declare their use of GroupSequenceProviderInterface
- ClassMetadata.php in vendor/
symfony/ validator/ Mapping/ ClassMetadata.php - ClassMetadataInterface.php in vendor/
symfony/ validator/ Mapping/ ClassMetadataInterface.php
File
-
vendor/
symfony/ validator/ GroupSequenceProviderInterface.php, line 19
Namespace
Symfony\Component\ValidatorView source
interface GroupSequenceProviderInterface {
/**
* Returns which validation groups should be used for a certain state
* of the object.
*
* @return string[]|string[][]|GroupSequence
*/
public function getGroupSequence() : array|GroupSequence;
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
GroupSequenceProviderInterface::getGroupSequence | public | function | Returns which validation groups should be used for a certain state of the object. |