@@ -71,8 +71,8 @@ Configuration Options
71
71
The following sections describe all the configuration options
72
72
available on a ``Doctrine\ORM\Configuration `` instance.
73
73
74
- Proxy Directory (*** REQUIRED* **)
75
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
74
+ Proxy Directory (**REQUIRED **)
75
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
76
76
77
77
.. code-block :: php
78
78
@@ -85,8 +85,8 @@ classes. For a detailed explanation on proxy classes and how they
85
85
are used in Doctrine, refer to the "Proxy Objects" section further
86
86
down.
87
87
88
- Proxy Namespace (*** REQUIRED* **)
89
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88
+ Proxy Namespace (**REQUIRED **)
89
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
90
90
91
91
.. code-block :: php
92
92
@@ -98,8 +98,8 @@ Gets or sets the namespace to use for generated proxy classes. For
98
98
a detailed explanation on proxy classes and how they are used in
99
99
Doctrine, refer to the "Proxy Objects" section further down.
100
100
101
- Metadata Driver (*** REQUIRED* **)
102
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
101
+ Metadata Driver (**REQUIRED **)
102
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
103
103
104
104
.. code-block :: php
105
105
@@ -139,8 +139,8 @@ accept either a single directory as a string or an array of
139
139
directories. With this feature a single driver can support multiple
140
140
directories of Entities.
141
141
142
- Metadata Cache (*** RECOMMENDED* **)
143
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
142
+ Metadata Cache (**RECOMMENDED **)
143
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
144
144
145
145
.. code-block :: php
146
146
@@ -161,8 +161,8 @@ For development you should use an array cache like
161
161
``Symfony\Component\Cache\Adapter\ArrayAdapter ``
162
162
which only caches data on a per-request basis.
163
163
164
- Query Cache (*** RECOMMENDED* **)
165
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
164
+ Query Cache (**RECOMMENDED **)
165
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
166
166
167
167
.. code-block :: php
168
168
@@ -184,8 +184,8 @@ For development you should use an array cache like
184
184
``Symfony\Component\Cache\Adapter\ArrayAdapter ``
185
185
which only caches data on a per-request basis.
186
186
187
- SQL Logger (*** Optional* **)
188
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
187
+ SQL Logger (**Optional **)
188
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
189
189
190
190
.. code-block :: php
191
191
@@ -197,8 +197,8 @@ Gets or sets the logger to use for logging all SQL statements
197
197
executed by Doctrine. The logger class must implement the
198
198
deprecated ``Doctrine\DBAL\Logging\SQLLogger `` interface.
199
199
200
- Auto-generating Proxy Classes (*** OPTIONAL* **)
201
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
200
+ Auto-generating Proxy Classes (**OPTIONAL **)
201
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
202
202
203
203
Proxy classes can either be generated manually through the Doctrine
204
204
Console or automatically at runtime by Doctrine. The configuration
@@ -441,7 +441,7 @@ correctly if sub-namespaces use different metadata driver
441
441
implementations.
442
442
443
443
444
- Default Repository (*** OPTIONAL* **)
444
+ Default Repository (**OPTIONAL **)
445
445
-----------------------------------
446
446
447
447
Specifies the FQCN of a subclass of the EntityRepository.
@@ -456,7 +456,7 @@ That will be available for all entities without a custom repository class.
456
456
The default value is ``Doctrine\ORM\EntityRepository ``.
457
457
Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
458
458
459
- Ignoring entities (*** OPTIONAL* **)
459
+ Ignoring entities (**OPTIONAL **)
460
460
-----------------------------------
461
461
462
462
Specifies the Entity FQCNs to ignore.
0 commit comments