public function ExecutionContextInterface::isGroupValidated in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Context/ExecutionContextInterface.php \Symfony\Component\Validator\Context\ExecutionContextInterface::isGroupValidated()
Returns whether an object was 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
Return value
bool Whether the object was already validated for that group
2 methods override ExecutionContextInterface::isGroupValidated()
- ExecutionContext::isGroupValidated in vendor/
symfony/ validator/ Context/ ExecutionContext.php - Returns whether an object was validated in a specific validation group.
- ExecutionContext::isGroupValidated in core/
lib/ Drupal/ Core/ TypedData/ Validation/ ExecutionContext.php - Returns whether an object was validated in a specific validation group.
File
- vendor/
symfony/ validator/ Context/ ExecutionContextInterface.php, line 176
Class
- ExecutionContextInterface
- The context of a validation run.
Namespace
Symfony\Component\Validator\ContextCode
public function isGroupValidated($cacheKey, $groupHash);