function ExecutionContext::getClassName
Same name in this branch
- 11.1.x core/lib/Drupal/Core/Validation/ExecutionContext.php \Drupal\Core\Validation\ExecutionContext::getClassName()
Overrides ExecutionContextInterface::getClassName
File
-
vendor/
symfony/ validator/ Context/ ExecutionContext.php, line 208
Class
- ExecutionContext
- The context used and created by {@link ExecutionContextFactory}.
Namespace
Symfony\Component\Validator\ContextCode
public function getClassName() : ?string {
return $this->metadata instanceof MemberMetadata || $this->metadata instanceof ClassMetadataInterface ? $this->metadata
->getClassName() : null;
}