From ea434bbea37e067aa52272816c6dcda5ff826154 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Mon, 16 May 2011 20:41:21 +0200 Subject: [PATCH] Add one more method ClassMetadata::getName() --- lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php b/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php index 2521c0797..70f18b80e 100644 --- a/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php +++ b/lib/Doctrine/Common/Persistence/Mapping/ClassMetadata.php @@ -30,6 +30,13 @@ */ interface ClassMetadata { + /** + * Get fully-qualified class name of this persistent class. + * + * @return string + */ + public function getName(); + /** * Gets the mapped identifier field name. *