You are here

public function ExecutionContextInterface::markGroupAsValidated in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Context/ExecutionContextInterface.php \Symfony\Component\Validator\Context\ExecutionContextInterface::markGroupAsValidated()

Marks an object as validated in a specific validation group.

@internal Used by the validator engine. Should not be called by user code.

Parameters

string $cacheKey The hash of the object:

string $groupHash The group's name or hash, if it is group: sequence

2 methods override ExecutionContextInterface::markGroupAsValidated()
ExecutionContext::markGroupAsValidated in vendor/symfony/validator/Context/ExecutionContext.php
Marks an object as validated in a specific validation group.
ExecutionContext::markGroupAsValidated in core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php
Marks an object as validated in a specific validation group.

File

vendor/symfony/validator/Context/ExecutionContextInterface.php, line 161

Class

ExecutionContextInterface
The context of a validation run.

Namespace

Symfony\Component\Validator\Context

Code

public function markGroupAsValidated($cacheKey, $groupHash);