interface ValidatorBuilderInterface

A configurable builder for ValidatorInterface objects.

Methods

addObjectInitializer(ObjectInitializerInterface $initializer)

Adds an object initializer to the validator.

addObjectInitializers(array $initializers)

Adds a list of object initializers to the validator.

addXmlMapping(string $path)

Adds an XML constraint mapping file to the validator.

addXmlMappings(array $paths)

Adds a list of XML constraint mapping files to the validator.

addYamlMapping(string $path)

Adds a YAML constraint mapping file to the validator.

addYamlMappings(array $paths)

Adds a list of YAML constraint mappings file to the validator.

addMethodMapping(string $methodName)

Enables constraint mapping using the given static method.

addMethodMappings(array $methodNames)

Enables constraint mapping using the given static methods.

enableAnnotationMapping(Reader $annotationReader = null)

Enables annotation based constraint mapping.

disableAnnotationMapping()

Disables annotation based constraint mapping.

setMetadataFactory(MetadataFactoryInterface $metadataFactory)

Sets the class metadata factory used by the validator.

setMetadataCache(CacheInterface $cache)

Sets the cache for caching class metadata.

setConstraintValidatorFactory(ConstraintValidatorFactoryInterface $validatorFactory)

Sets the constraint validator factory used by the validator.

setTranslator(TranslatorInterface $translator)

Sets the translator used for translating violation messages.

setTranslationDomain(string $translationDomain)

Sets the default translation domain of violation messages.

ValidatorInterface
getValidator()

Builds and returns a new validator object.

Details

at line line 33
ValidatorBuilderInterface addObjectInitializer(ObjectInitializerInterface $initializer)

Adds an object initializer to the validator.

Parameters

ObjectInitializerInterface $initializer The initializer

Return Value

ValidatorBuilderInterface The builder object

at line line 42
ValidatorBuilderInterface addObjectInitializers(array $initializers)

Adds a list of object initializers to the validator.

Parameters

array $initializers The initializer

Return Value

ValidatorBuilderInterface The builder object

at line line 51
ValidatorBuilderInterface addXmlMapping(string $path)

Adds an XML constraint mapping file to the validator.

Parameters

string $path The path to the mapping file

Return Value

ValidatorBuilderInterface The builder object

at line line 60
ValidatorBuilderInterface addXmlMappings(array $paths)

Adds a list of XML constraint mapping files to the validator.

Parameters

array $paths The paths to the mapping files

Return Value

ValidatorBuilderInterface The builder object

at line line 69
ValidatorBuilderInterface addYamlMapping(string $path)

Adds a YAML constraint mapping file to the validator.

Parameters

string $path The path to the mapping file

Return Value

ValidatorBuilderInterface The builder object

at line line 78
ValidatorBuilderInterface addYamlMappings(array $paths)

Adds a list of YAML constraint mappings file to the validator.

Parameters

array $paths The paths to the mapping files

Return Value

ValidatorBuilderInterface The builder object

at line line 87
ValidatorBuilderInterface addMethodMapping(string $methodName)

Enables constraint mapping using the given static method.

Parameters

string $methodName The name of the method

Return Value

ValidatorBuilderInterface The builder object

at line line 96
ValidatorBuilderInterface addMethodMappings(array $methodNames)

Enables constraint mapping using the given static methods.

Parameters

array $methodNames The names of the methods

Return Value

ValidatorBuilderInterface The builder object

at line line 105
ValidatorBuilderInterface enableAnnotationMapping(Reader $annotationReader = null)

Enables annotation based constraint mapping.

Parameters

Reader $annotationReader The annotation reader to be used

Return Value

ValidatorBuilderInterface The builder object

at line line 112
ValidatorBuilderInterface disableAnnotationMapping()

Disables annotation based constraint mapping.

Return Value

ValidatorBuilderInterface The builder object

at line line 121
ValidatorBuilderInterface setMetadataFactory(MetadataFactoryInterface $metadataFactory)

Sets the class metadata factory used by the validator.

Parameters

MetadataFactoryInterface $metadataFactory The metadata factory

Return Value

ValidatorBuilderInterface The builder object

at line line 130
ValidatorBuilderInterface setMetadataCache(CacheInterface $cache)

Sets the cache for caching class metadata.

Parameters

CacheInterface $cache The cache instance

Return Value

ValidatorBuilderInterface The builder object

at line line 139
ValidatorBuilderInterface setConstraintValidatorFactory(ConstraintValidatorFactoryInterface $validatorFactory)

Sets the constraint validator factory used by the validator.

Parameters

ConstraintValidatorFactoryInterface $validatorFactory The validator factory

Return Value

ValidatorBuilderInterface The builder object

at line line 148
ValidatorBuilderInterface setTranslator(TranslatorInterface $translator)

Sets the translator used for translating violation messages.

Parameters

TranslatorInterface $translator The translator instance

Return Value

ValidatorBuilderInterface The builder object

at line line 161
ValidatorBuilderInterface setTranslationDomain(string $translationDomain)

Sets the default translation domain of violation messages.

The same message can have different translations in different domains. Pass the domain that is used for violation messages by default to this method.

Parameters

string $translationDomain The translation domain of the violation messages

Return Value

ValidatorBuilderInterface The builder object

at line line 168
ValidatorInterface getValidator()

Builds and returns a new validator object.

Return Value

ValidatorInterface The built validator.