Symfony2 API
Class

Symfony\Component\Validator\ConstraintValidatorFactory

class ConstraintValidatorFactory implements ConstraintValidatorFactoryInterface

Default implementation of the ConstraintValidatorFactoryInterface.

This enforces the convention that the validatedBy() method on any
Constrain will return the class name of the ConstraintValidator that
should validate the Constraint.

Methods

ConstraintValidatorInterface getInstance(Constraint $constraint)

Given a Constraint, this returns the ConstraintValidatorInterface object that should be used to verify its validity.

Details

at line 31
public ConstraintValidatorInterface getInstance(Constraint $constraint)

Given a Constraint, this returns the ConstraintValidatorInterface object that should be used to verify its validity.

Parameters

Constraint $constraint The source constraint

Return Value

ConstraintValidatorInterface