You are here

public function ClassMetadata::getClassName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Mapping/ClassMetadata.php \Symfony\Component\Validator\Mapping\ClassMetadata::getClassName()

Returns the name of the backing PHP class.

Return value

string The name of the backing class.

Overrides ClassBasedInterface::getClassName

3 calls to ClassMetadata::getClassName()
ClassMetadata::addGetterConstraint in vendor/symfony/validator/Mapping/ClassMetadata.php
Adds a constraint to the getter of the given property.
ClassMetadata::addPropertyConstraint in vendor/symfony/validator/Mapping/ClassMetadata.php
Adds a constraint to the given property.
ClassMetadata::getReflectionClass in vendor/symfony/validator/Mapping/ClassMetadata.php
Returns a ReflectionClass instance for this class.

File

vendor/symfony/validator/Mapping/ClassMetadata.php, line 194

Class

ClassMetadata
Default implementation of {@link ClassMetadataInterface}.

Namespace

Symfony\Component\Validator\Mapping

Code

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