public function GetterMetadata::getPropertyValue

Extracts the value of the property from the given container.

Parameters

mixed $containingValue The container to extract the property value from.:

Return value

mixed The value of the property.

Overrides PropertyMetadataInterface::getPropertyValue

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/GetterMetadata.php, line 45

Class

GetterMetadata

Namespace

Symfony\Component\Validator\Mapping

Code

public function getPropertyValue($object) {
  return $this
    ->newReflectionMember($object)
    ->invoke($object);
}