class Validator implements ValidatorInterface, MetadataFactoryInterface
deprecated
since version 2.5, to be removed in 3.0. Use {@link Validator\RecursiveValidator} instead.
Default implementation of {@link ValidatorInterface}.
Methods
__construct(MetadataFactoryInterface $metadataFactory, ConstraintValidatorFactoryInterface $validatorFactory, TranslatorInterface $translator, $translationDomain = 'validators', array $objectInitializers = array()) | ||
MetadataFactoryInterface | getMetadataFactory() Returns the factory for metadata instances. | |
MetadataInterface | getMetadataFor(mixed $value) Returns the metadata for the given value. | |
bool | hasMetadataFor(mixed $value) Returns whether the class is able to return metadata for the given value. | |
ConstraintViolationListInterface | validate(mixed $value, array|null $groups = null, bool $traverse = false, bool $deep = false) Validates a value. | |
ConstraintViolationListInterface | validateProperty(mixed $containingValue, string $property, array|null $groups = null) Validates a property of a value against its current value. | |
ConstraintViolationListInterface | validatePropertyValue(mixed $containingValue, string $property, string $value, array|null $groups = null) Validate a property of a value against a potential value. | |
ConstraintViolationListInterface | validateValue(mixed $value, Constraint|Constraint[] $constraints, array|null $groups = null) Validates a value against a constraint or a list of constraints. |
Details
__construct(MetadataFactoryInterface $metadataFactory, ConstraintValidatorFactoryInterface $validatorFactory, TranslatorInterface $translator, $translationDomain = 'validators', array $objectInitializers = array())
MetadataFactoryInterface getMetadataFactory()
Returns the factory for metadata instances.
MetadataInterface getMetadataFor(mixed $value)
Returns the metadata for the given value.
bool hasMetadataFor(mixed $value)
Returns whether the class is able to return metadata for the given value.
ConstraintViolationListInterface validate(mixed $value, array|null $groups = null, bool $traverse = false, bool $deep = false)
Validates a value.
The accepted values depend on the {@link MetadataFactoryInterface} implementation.
The signature changed with Symfony 2.5 (see {@link Validator\ValidatorInterface::validate()}. This signature will be disabled in Symfony 3.0.
ConstraintViolationListInterface validateProperty(mixed $containingValue, string $property, array|null $groups = null)
Validates a property of a value against its current value.
The accepted values depend on the {@link MetadataFactoryInterface} implementation.
ConstraintViolationListInterface validatePropertyValue(mixed $containingValue, string $property, string $value, array|null $groups = null)
Validate a property of a value against a potential value.
The accepted values depend on the {@link MetadataFactoryInterface} implementation.
ConstraintViolationListInterface validateValue(mixed $value, Constraint|Constraint[] $constraints, array|null $groups = null)
Validates a value against a constraint or a list of constraints.
Please login to continue.