class AtLeastOneOfValidator
@author Przemysław Bogusz <przemyslaw.bogusz@tubotax.pl>
Hierarchy
- class \Symfony\Component\Validator\ConstraintValidator implements \Symfony\Component\Validator\ConstraintValidatorInterface
- class \Symfony\Component\Validator\Constraints\AtLeastOneOfValidator extends \Symfony\Component\Validator\ConstraintValidator
Expanded class hierarchy of AtLeastOneOfValidator
File
-
vendor/
symfony/ validator/ Constraints/ AtLeastOneOfValidator.php, line 21
Namespace
Symfony\Component\Validator\ConstraintsView source
class AtLeastOneOfValidator extends ConstraintValidator {
public function validate(mixed $value, Constraint $constraint) : void {
if (!$constraint instanceof AtLeastOneOf) {
throw new UnexpectedTypeException($constraint, AtLeastOneOf::class);
}
$validator = $this->context
->getValidator();
// Build a first violation to have the base message of the constraint translated
$baseMessageContext = clone $this->context;
$baseMessageContext->buildViolation($constraint->message)
->addViolation();
$baseViolations = $baseMessageContext->getViolations();
$messages = [
(string) $baseViolations->get(\count($baseViolations) - 1)
->getMessage(),
];
foreach ($constraint->constraints as $key => $item) {
if (!\in_array($this->context
->getGroup(), $item->groups, true)) {
continue;
}
$context = $this->context;
$executionContext = clone $this->context;
$executionContext->setNode($value, $this->context
->getObject(), $this->context
->getMetadata(), $this->context
->getPropertyPath());
$violations = $validator->inContext($executionContext)
->validate($value, $item, $this->context
->getGroup())
->getViolations();
$this->context = $context;
if (\count($this->context
->getViolations()) === \count($violations)) {
return;
}
if ($constraint->includeInternalMessages) {
$message = ' [' . ($key + 1) . '] ';
if ($item instanceof All || $item instanceof Collection) {
$message .= $constraint->messageCollection;
}
else {
$message .= $violations->get(\count($violations) - 1)
->getMessage();
}
$messages[] = $message;
}
}
$this->context
->buildViolation(implode('', $messages))
->setCode(AtLeastOneOf::AT_LEAST_ONE_OF_ERROR)
->addViolation();
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
AtLeastOneOfValidator::validate | public | function | Checks if the passed value is valid. | Overrides ConstraintValidatorInterface::validate |
ConstraintValidator::$context | protected | property | ||
ConstraintValidator::formatTypeOf | protected | function | Returns a string representation of the type of the value. | |
ConstraintValidator::formatValue | protected | function | Returns a string representation of the value. | |
ConstraintValidator::formatValues | protected | function | Returns a string representation of a list of values. | |
ConstraintValidator::initialize | public | function | Initializes the constraint validator. | Overrides ConstraintValidatorInterface::initialize |
ConstraintValidator::OBJECT_TO_STRING | public | constant | Whether to cast objects with a "__toString()" method to strings. | |
ConstraintValidator::PRETTY_DATE | public | constant | Whether to format {@link \DateTime} objects, either with the {@link \IntlDateFormatter} (if it is available) or as RFC-3339 dates ("Y-m-d H:i:s"). |