Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function addViolation($message, array $parameters = array(), $invalidValue = NULL, $plural = NULL, $code = NULL)
 {
     // The parameters $invalidValue and following are ignored by the new
     // API, as they are not present in the new interface anymore.
     // You should use buildViolation() instead.
     if (func_num_args() > 2) {
         throw new \LogicException('Legacy validator API is unsupported.');
     }
     $this->violations->add(new ConstraintViolation($this->translator->trans($message, $parameters, $this->translationDomain), $message, $parameters, $this->root, $this->propertyPath, $this->value, NULL, NULL, $this->constraint));
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function addViolation()
 {
     if (null === $this->plural) {
         $translatedMessage = $this->translator->trans($this->message, $this->parameters, $this->translationDomain);
     } else {
         try {
             $translatedMessage = $this->translator->transChoice($this->message, $this->plural, $this->parameters, $this->translationDomain);
         } catch (\InvalidArgumentException $e) {
             $translatedMessage = $this->translator->trans($this->message, $this->parameters, $this->translationDomain);
         }
     }
     $this->violations->add(new ConstraintViolation($translatedMessage, $this->message, $this->parameters, $this->root, $this->propertyPath, $this->invalidValue, $this->plural, $this->code, $this->constraint, $this->cause));
 }