You are here

public function TestObjectMetadata::getName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\TestObjectMetadata::getName()

Gets the fully-qualified class name of this persistent class.

Return value

string

Overrides ClassMetadata::getName

1 call to TestObjectMetadata::getName()
TestObjectMetadata::getReflectionClass in vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php
Gets the ReflectionClass instance for this mapped class.

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php, line 182

Class

TestObjectMetadata

Namespace

Doctrine\Tests\Common\Persistence

Code

public function getName() {
  return __NAMESPACE__ . '\\TestObject';
}