public function ExecutionContextInterface::addViolationAt

Adds a violation at the validation graph node with the given property path relative to the current property path.

@api

Parameters

string $subPath The relative property path for the violation.:

string $message The error message.:

array $params The parameters substituted in the error message.:

mixed $invalidValue The invalid, validated value.:

integer|null $pluralization The number to use to pluralize of the message.:

integer|null $code The violation code.:

1 method overrides ExecutionContextInterface::addViolationAt()
ExecutionContext::addViolationAt in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/ExecutionContext.php
Adds a violation at the validation graph node with the given property path relative to the current property path.

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/ExecutionContextInterface.php, line 114

Class

ExecutionContextInterface
Stores the validator's state during validation.

Namespace

Symfony\Component\Validator

Code

public function addViolationAt($subPath, $message, array $params = array(), $invalidValue = null, $pluralization = null, $code = null);