public function ExecutionContextInterface::getMetadata in Plug 7
Returns the metadata for the currently validated value.
With the core implementation, this method returns a {@link Mapping\ClassMetadata} instance if the current value is an object, a {@link Mapping\PropertyMetadata} instance if the current value is the value of a property and a {@link Mapping\GetterMetadata} instance if the validated value is the result of a getter method.
If the validated value is neither of these, for example if the validator has been called with a plain value and constraint, this method returns null.
Return value
MetadataInterface|null The metadata of the currently validated value.
2 methods override ExecutionContextInterface::getMetadata()
- ExecutionContext::getMetadata in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ ExecutionContext.php - Returns the metadata for the currently validated value.
- ExecutionContext::getMetadata in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Context/ ExecutionContext.php - Returns the metadata for the currently validated value.
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ ExecutionContextInterface.php, line 251
Class
- ExecutionContextInterface
- Stores the validator's state during validation.
Namespace
Symfony\Component\ValidatorCode
public function getMetadata();