function ExecutionContext::addViolation

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

File

core/lib/Drupal/Core/Validation/ExecutionContext.php, line 114

Class

ExecutionContext
Defines an execution context class.

Namespace

Drupal\Core\Validation

Code

public function addViolation(string $message, array $params = []) : void {
    $this->violations
        ->add(new ConstraintViolation($this->translator
        ->trans($message, $params, $this->translationDomain), $message, $params, $this->root, $this->propertyPath, $this->value, NULL, NULL, $this->constraint));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.