You are here

public function ExecutionContext::addViolation in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php \Drupal\Core\TypedData\Validation\ExecutionContext::addViolation()
  2. 9 core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php \Drupal\Core\TypedData\Validation\ExecutionContext::addViolation()

File

core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php, line 160

Class

ExecutionContext
Defines an execution context class.

Namespace

Drupal\Core\TypedData\Validation

Code

public function addViolation($message, array $parameters = [], $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));
}