@@ -71,8 +71,8 @@ Configuration Options
7171The following sections describe all the configuration options
7272available on a ``Doctrine\ORM\Configuration `` instance.
7373
74- Proxy Directory (*** REQUIRED* **)
75- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
74+ Proxy Directory (**REQUIRED **)
75+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7676
7777.. code-block :: php
7878
@@ -85,8 +85,8 @@ classes. For a detailed explanation on proxy classes and how they
8585are used in Doctrine, refer to the "Proxy Objects" section further
8686down.
8787
88- Proxy Namespace (*** REQUIRED* **)
89- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88+ Proxy Namespace (**REQUIRED **)
89+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9090
9191.. code-block :: php
9292
@@ -98,8 +98,8 @@ Gets or sets the namespace to use for generated proxy classes. For
9898a detailed explanation on proxy classes and how they are used in
9999Doctrine, refer to the "Proxy Objects" section further down.
100100
101- Metadata Driver (*** REQUIRED* **)
102- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
101+ Metadata Driver (**REQUIRED **)
102+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
103103
104104.. code-block :: php
105105
@@ -144,8 +144,8 @@ accept either a single directory as a string or an array of
144144directories. With this feature a single driver can support multiple
145145directories of Entities.
146146
147- Metadata Cache (*** RECOMMENDED* **)
148- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147+ Metadata Cache (**RECOMMENDED **)
148+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149149
150150.. code-block :: php
151151
@@ -166,8 +166,8 @@ For development you should use an array cache like
166166``Symfony\Component\Cache\Adapter\ArrayAdapter ``
167167which only caches data on a per-request basis.
168168
169- Query Cache (*** RECOMMENDED* **)
170- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169+ Query Cache (**RECOMMENDED **)
170+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
171171
172172.. code-block :: php
173173
@@ -189,8 +189,8 @@ For development you should use an array cache like
189189``Symfony\Component\Cache\Adapter\ArrayAdapter ``
190190which only caches data on a per-request basis.
191191
192- SQL Logger (*** Optional* **)
193- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
192+ SQL Logger (**Optional **)
193+ ~~~~~~~~~~~~~~~~~~~~~~~~~
194194
195195.. code-block :: php
196196
@@ -202,8 +202,8 @@ Gets or sets the logger to use for logging all SQL statements
202202executed by Doctrine. The logger class must implement the
203203deprecated ``Doctrine\DBAL\Logging\SQLLogger `` interface.
204204
205- Auto-generating Proxy Classes (*** OPTIONAL* **)
206- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
205+ Auto-generating Proxy Classes (**OPTIONAL **)
206+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
207207
208208Proxy classes can either be generated manually through the Doctrine
209209Console or automatically at runtime by Doctrine. The configuration
@@ -446,7 +446,7 @@ correctly if sub-namespaces use different metadata driver
446446implementations.
447447
448448
449- Default Repository (*** OPTIONAL* **)
449+ Default Repository (**OPTIONAL **)
450450-----------------------------------
451451
452452Specifies the FQCN of a subclass of the EntityRepository.
@@ -461,7 +461,7 @@ That will be available for all entities without a custom repository class.
461461 The default value is ``Doctrine\ORM\EntityRepository ``.
462462Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
463463
464- Ignoring entities (*** OPTIONAL* **)
464+ Ignoring entities (**OPTIONAL **)
465465-----------------------------------
466466
467467Specifies the Entity FQCNs to ignore.
0 commit comments