public function ExecutionContext::setGroup in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/validator/Context/ExecutionContext.php \Symfony\Component\Validator\Context\ExecutionContext::setGroup()
- 8.0 core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php \Drupal\Core\TypedData\Validation\ExecutionContext::setGroup()
Same name and namespace in other branches
- 8 vendor/symfony/validator/Context/ExecutionContext.php \Symfony\Component\Validator\Context\ExecutionContext::setGroup()
Sets the currently validated group.
@internal Used by the validator engine. Should not be called by user code.
Parameters
string|null $group The validated group:
Overrides ExecutionContextInterface::setGroup
File
- vendor/
symfony/ validator/ Context/ ExecutionContext.php, line 170
Class
- ExecutionContext
- The context used and created by {@link ExecutionContextFactory}.
Namespace
Symfony\Component\Validator\ContextCode
public function setGroup($group) {
$this->group = $group;
}