@@ -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
@@ -139,8 +139,8 @@ accept either a single directory as a string or an array of
139139directories. With this feature a single driver can support multiple
140140directories of Entities.
141141
142- Metadata Cache (*** RECOMMENDED* **)
143- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
142+ Metadata Cache (**RECOMMENDED **)
143+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
144144
145145.. code-block :: php
146146
@@ -161,8 +161,8 @@ For development you should use an array cache like
161161``Symfony\Component\Cache\Adapter\ArrayAdapter ``
162162which only caches data on a per-request basis.
163163
164- Query Cache (*** RECOMMENDED* **)
165- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
164+ Query Cache (**RECOMMENDED **)
165+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
166166
167167.. code-block :: php
168168
@@ -184,8 +184,8 @@ For development you should use an array cache like
184184``Symfony\Component\Cache\Adapter\ArrayAdapter ``
185185which only caches data on a per-request basis.
186186
187- SQL Logger (*** Optional* **)
188- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
187+ SQL Logger (**Optional **)
188+ ~~~~~~~~~~~~~~~~~~~~~~~~~
189189
190190.. code-block :: php
191191
@@ -197,8 +197,8 @@ Gets or sets the logger to use for logging all SQL statements
197197executed by Doctrine. The logger class must implement the
198198deprecated ``Doctrine\DBAL\Logging\SQLLogger `` interface.
199199
200- Auto-generating Proxy Classes (*** OPTIONAL* **)
201- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
200+ Auto-generating Proxy Classes (**OPTIONAL **)
201+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
202202
203203Proxy classes can either be generated manually through the Doctrine
204204Console or automatically at runtime by Doctrine. The configuration
@@ -441,7 +441,7 @@ correctly if sub-namespaces use different metadata driver
441441implementations.
442442
443443
444- Default Repository (*** OPTIONAL* **)
444+ Default Repository (**OPTIONAL **)
445445-----------------------------------
446446
447447Specifies the FQCN of a subclass of the EntityRepository.
@@ -456,7 +456,7 @@ That will be available for all entities without a custom repository class.
456456 The default value is ``Doctrine\ORM\EntityRepository ``.
457457Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
458458
459- Ignoring entities (*** OPTIONAL* **)
459+ Ignoring entities (**OPTIONAL **)
460460-----------------------------------
461461
462462Specifies the Entity FQCNs to ignore.
0 commit comments