From 54a61bbbc216ccec509d7c053b11fe36e5a39c52 Mon Sep 17 00:00:00 2001 From: goran Date: Sat, 23 Oct 2010 20:45:45 +0800 Subject: [PATCH] Changed method name in an example for fetching class metadata --- manual/en/php-mapping.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/manual/en/php-mapping.txt b/manual/en/php-mapping.txt index 19a4f66a5..2167055a1 100644 --- a/manual/en/php-mapping.txt +++ b/manual/en/php-mapping.txt @@ -45,7 +45,10 @@ Now we can easily retrieve the populated `ClassMetadata` instance where the `PHP includes the file and the `ClassMetadataFactory` caches it for later retrieval: [php] - $class = $em->getMetadataFor('Entities\User'); + $class = $em->getClassMetadata('Entities\User'); + // or + $class = $em->getMetadataFactory()->getMetadataFor('Entities\User'); + ++ Static Function