public function ExecutionContextInterface::validateValue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/ExecutionContextInterface.php \Symfony\Component\Validator\ExecutionContextInterface::validateValue()
Validates a value against a constraint.
Use the parameter <tt>$subPath</tt> to adapt the property path for the validated value. For example, take the following object graph:
<pre> (Person)---($address: Address)---($street: string) ^ </pre>
When the validator validates the <tt>Address</tt> instance, the property path stored in the execution context is "address". When you manually validate the property <tt>$street</tt> now, pass the sub path "street" to adapt the full property path to "address.street":
<pre> $context->validate($address->street, new NotNull(), 'street'); </pre>
Parameters
mixed $value The value to validate.:
Constraint|Constraint[] $constraints The constraint(s) to validate against.:
string $subPath The path to append to the context's property path.:
null|string|string[] $groups The groups to validate in. If you don't pass any: groups here, the current group of the context will be used.
Deprecated
since version 2.5, to be removed in 3.0. Use {@link Context\ExecutionContextInterface::getValidator()} instead.
3 methods override ExecutionContextInterface::validateValue()
- ExecutionContext::validateValue in vendor/
symfony/ validator/ ExecutionContext.php - Validates a value against a constraint.
- ExecutionContext::validateValue in vendor/
symfony/ validator/ Context/ ExecutionContext.php - Validates a value against a constraint.
- ExecutionContext::validateValue in core/
lib/ Drupal/ Core/ TypedData/ Validation/ ExecutionContext.php - Validates a value against a constraint.
File
- vendor/
symfony/ validator/ ExecutionContextInterface.php, line 195
Class
- ExecutionContextInterface
- Stores the validator's state during validation.
Namespace
Symfony\Component\ValidatorCode
public function validateValue($value, $constraints, $subPath = '', $groups = null);