Symfony\Component\Form\Extension\Validator\ValidatorTypeGuesser::guessMinLength PHP Method

guessMinLength() public method

{@inheritDoc}
public guessMinLength ( $class, $property )
    public function guessMinLength($class, $property)
    {
        $guesser = $this;

        return $this->guess($class, $property, function (Constraint $constraint) use ($guesser) {
            return $guesser->guessMinLengthForConstraint($constraint);
        });
    }