From 43e4e1c38992e18f0c3258f4062ca0a2110d4663 Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Mon, 19 Dec 2011 18:35:01 -0200 Subject: [PATCH] add doc for MappedSuperclass repositoryClass --- en/reference/annotations-reference.rst | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/en/reference/annotations-reference.rst b/en/reference/annotations-reference.rst index f82704778..1760ca731 100644 --- a/en/reference/annotations-reference.rst +++ b/en/reference/annotations-reference.rst @@ -199,7 +199,7 @@ Optional attributes: - **repositoryClass**: Specifies the FQCN of a subclass of the - Doctrine. Use of repositories for entities is encouraged to keep + EntityRepository. Use of repositories for entities is encouraged to keep specialized DQL and SQL operations separated from the Model/Domain Layer. - **readOnly**: (>= 2.1) Specifies that this entity is marked as read only and not @@ -574,6 +574,29 @@ The @MappedSuperclass annotation cannot be used in conjunction with @Entity. See the Inheritance Mapping section for :doc:`more details on the restrictions of mapped superclasses `. +Optional attributes: + + +- **repositoryClass**: (>= 2.2) Specifies the FQCN of a subclass of the EntityRepository. + That will be inherited for all subclasses of that Mapped Superclass. + +Example: + +.. code-block:: php + +