function ExecutionContext::__construct
Same name in this branch
- 11.1.x vendor/symfony/validator/Context/ExecutionContext.php \Symfony\Component\Validator\Context\ExecutionContext::__construct()
Creates a new ExecutionContext.
@internal Called by \Drupal\Core\Validation\ExecutionContextFactory. Should not be used in user code.
Parameters
\Symfony\Component\Validator\Validator\ValidatorInterface $validator: The validator.
mixed $root: The root.
\Drupal\Core\Validation\TranslatorInterface $translator: The translator.
string|null $translationDomain: (optional) The translation domain.
File
-
core/
lib/ Drupal/ Core/ Validation/ ExecutionContext.php, line 85
Class
- ExecutionContext
- Defines an execution context class.
Namespace
Drupal\Core\ValidationCode
public function __construct(ValidatorInterface $validator, mixed $root, TranslatorInterface $translator, ?string $translationDomain = NULL) {
$this->violations = new ConstraintViolationList();
}