You are here

public function MemberMetadata::getName in Plug 7

Returns the name of the member.

Return value

string

2 calls to MemberMetadata::getName()
GetterMetadata::newReflectionMember in lib/Symfony/validator/Symfony/Component/Validator/Mapping/GetterMetadata.php
Creates a new reflection instance for accessing the member's value.
PropertyMetadata::newReflectionMember in lib/Symfony/validator/Symfony/Component/Validator/Mapping/PropertyMetadata.php
Creates a new reflection instance for accessing the member's value.

File

lib/Symfony/validator/Symfony/Component/Validator/Mapping/MemberMetadata.php, line 126

Class

MemberMetadata
Stores all metadata needed for validating a class property.

Namespace

Symfony\Component\Validator\Mapping

Code

public function getName() {
  return $this->name;
}