function YamlValidator::validate
Overrides ConstraintValidatorInterface::validate
File
-
vendor/
symfony/ validator/ Constraints/ YamlValidator.php, line 26
Class
- YamlValidator
- @author Kev <https://github.com/symfonyaml>
Namespace
Symfony\Component\Validator\ConstraintsCode
public function validate(mixed $value, Constraint $constraint) : void {
if (!$constraint instanceof Yaml) {
throw new UnexpectedTypeException($constraint, Yaml::class);
}
if (null === $value || '' === $value) {
return;
}
if (!\is_scalar($value) && !$value instanceof \Stringable) {
throw new UnexpectedValueException($value, 'string');
}
$value = (string) $value;
/** @see \Symfony\Component\Yaml\Command\LintCommand::validate() */
$prevErrorHandler = set_error_handler(function ($level, $message, $file, $line) use (&$prevErrorHandler) {
if (\E_USER_DEPRECATED === $level) {
throw new ParseException($message, $this->getParser()
->getRealCurrentLineNb() + 1);
}
return $prevErrorHandler ? $prevErrorHandler($level, $message, $file, $line) : false;
});
try {
(new Parser())->parse($value, $constraint->flags);
} catch (ParseException $e) {
$this->context
->buildViolation($constraint->message)
->setParameter('{{ error }}', $e->getMessage())
->setParameter('{{ line }}', $e->getParsedLine())
->setCode(Yaml::INVALID_YAML_ERROR)
->addViolation();
} finally {
restore_error_handler();
}
}