Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / validator / Constraints / LocaleValidator.php
index 6e779df2bd62c0b2cd73ffaae776954f6fb5d560..93eab8cb7e757c92f41e31df6ccbf41aaf121ff1 100644 (file)
@@ -12,7 +12,6 @@
 namespace Symfony\Component\Validator\Constraints;
 
 use Symfony\Component\Intl\Intl;
-use Symfony\Component\Validator\Context\ExecutionContextInterface;
 use Symfony\Component\Validator\Constraint;
 use Symfony\Component\Validator\ConstraintValidator;
 use Symfony\Component\Validator\Exception\UnexpectedTypeException;
@@ -46,17 +45,10 @@ class LocaleValidator extends ConstraintValidator
         $aliases = Intl::getLocaleBundle()->getAliases();
 
         if (!isset($locales[$value]) && !in_array($value, $aliases)) {
-            if ($this->context instanceof ExecutionContextInterface) {
-                $this->context->buildViolation($constraint->message)
-                    ->setParameter('{{ value }}', $this->formatValue($value))
-                    ->setCode(Locale::NO_SUCH_LOCALE_ERROR)
-                    ->addViolation();
-            } else {
-                $this->buildViolation($constraint->message)
-                    ->setParameter('{{ value }}', $this->formatValue($value))
-                    ->setCode(Locale::NO_SUCH_LOCALE_ERROR)
-                    ->addViolation();
-            }
+            $this->context->buildViolation($constraint->message)
+                ->setParameter('{{ value }}', $this->formatValue($value))
+                ->setCode(Locale::NO_SUCH_LOCALE_ERROR)
+                ->addViolation();
         }
     }
 }