@@ -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
@@ -144,8 +144,8 @@ accept either a single directory as a string or an array of
144
144
directories. With this feature a single driver can support multiple
145
145
directories of Entities.
146
146
147
- Metadata Cache (*** RECOMMENDED* **)
148
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147
+ Metadata Cache (**RECOMMENDED **)
148
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149
149
150
150
.. code-block :: php
151
151
@@ -166,8 +166,8 @@ For development you should use an array cache like
166
166
``Symfony\Component\Cache\Adapter\ArrayAdapter ``
167
167
which only caches data on a per-request basis.
168
168
169
- Query Cache (*** RECOMMENDED* **)
170
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169
+ Query Cache (**RECOMMENDED **)
170
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
171
171
172
172
.. code-block :: php
173
173
@@ -189,8 +189,8 @@ For development you should use an array cache like
189
189
``Symfony\Component\Cache\Adapter\ArrayAdapter ``
190
190
which only caches data on a per-request basis.
191
191
192
- SQL Logger (*** Optional* **)
193
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
192
+ SQL Logger (**Optional **)
193
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
194
194
195
195
.. code-block :: php
196
196
@@ -202,8 +202,8 @@ Gets or sets the logger to use for logging all SQL statements
202
202
executed by Doctrine. The logger class must implement the
203
203
deprecated ``Doctrine\DBAL\Logging\SQLLogger `` interface.
204
204
205
- Auto-generating Proxy Classes (*** OPTIONAL* **)
206
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
205
+ Auto-generating Proxy Classes (**OPTIONAL **)
206
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
207
207
208
208
Proxy classes can either be generated manually through the Doctrine
209
209
Console or automatically at runtime by Doctrine. The configuration
@@ -446,7 +446,7 @@ correctly if sub-namespaces use different metadata driver
446
446
implementations.
447
447
448
448
449
- Default Repository (*** OPTIONAL* **)
449
+ Default Repository (**OPTIONAL **)
450
450
-----------------------------------
451
451
452
452
Specifies the FQCN of a subclass of the EntityRepository.
@@ -461,7 +461,7 @@ That will be available for all entities without a custom repository class.
461
461
The default value is ``Doctrine\ORM\EntityRepository ``.
462
462
Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
463
463
464
- Ignoring entities (*** OPTIONAL* **)
464
+ Ignoring entities (**OPTIONAL **)
465
465
-----------------------------------
466
466
467
467
Specifies the Entity FQCNs to ignore.
0 commit comments