@@ -76,7 +76,7 @@ Configuration Options
7676The following sections describe all the configuration options
7777available on a ``Doctrine\ORM\Configuration `` instance.
7878
79- Native Lazy Objects (*** OPTIONAL* **)
79+ Native Lazy Objects (**OPTIONAL **)
8080~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8181
8282With PHP 8.4 we recommend that you use native lazy objects instead of
@@ -90,8 +90,8 @@ will become the only approach to lazy loading.
9090 <?php
9191 $config->enableNativeLazyObjects(true);
9292
93- Proxy Directory (*** REQUIRED* **)
94- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
93+ Proxy Directory (**REQUIRED **)
94+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9595
9696This setting is not required if you use native lazy objects with PHP 8.4
9797and will be removed in the future.
@@ -107,8 +107,8 @@ classes. For a detailed explanation on proxy classes and how they
107107are used in Doctrine, refer to the "Proxy Objects" section further
108108down.
109109
110- Proxy Namespace (*** REQUIRED* **)
111- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110+ Proxy Namespace (**REQUIRED **)
111+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112112
113113This setting is not required if you use native lazy objects with PHP 8.4
114114and will be removed in the future.
@@ -123,8 +123,8 @@ Gets or sets the namespace to use for generated proxy classes. For
123123a detailed explanation on proxy classes and how they are used in
124124Doctrine, refer to the "Proxy Objects" section further down.
125125
126- Metadata Driver (*** REQUIRED* **)
127- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
126+ Metadata Driver (**REQUIRED **)
127+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
128128
129129.. code-block :: php
130130
@@ -164,8 +164,8 @@ accept either a single directory as a string or an array of
164164directories. With this feature a single driver can support multiple
165165directories of Entities.
166166
167- Metadata Cache (*** RECOMMENDED* **)
168- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
167+ Metadata Cache (**RECOMMENDED **)
168+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169169
170170.. code-block :: php
171171
@@ -186,8 +186,8 @@ For development you should use an array cache like
186186``Symfony\Component\Cache\Adapter\ArrayAdapter ``
187187which only caches data on a per-request basis.
188188
189- Query Cache (*** RECOMMENDED* **)
190- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
189+ Query Cache (**RECOMMENDED **)
190+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
191191
192192.. code-block :: php
193193
@@ -209,8 +209,8 @@ For development you should use an array cache like
209209``Symfony\Component\Cache\Adapter\ArrayAdapter ``
210210which only caches data on a per-request basis.
211211
212- SQL Logger (*** Optional* **)
213- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
212+ SQL Logger (**Optional **)
213+ ~~~~~~~~~~~~~~~~~~~~~~~~~
214214
215215.. code-block :: php
216216
@@ -222,8 +222,8 @@ Gets or sets the logger to use for logging all SQL statements
222222executed by Doctrine. The logger class must implement the
223223deprecated ``Doctrine\DBAL\Logging\SQLLogger `` interface.
224224
225- Auto-generating Proxy Classes (*** OPTIONAL* **)
226- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
225+ Auto-generating Proxy Classes (**OPTIONAL **)
226+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
227227
228228This setting is not required if you use native lazy objects with PHP 8.4
229229and will be removed in the future.
@@ -469,7 +469,7 @@ correctly if sub-namespaces use different metadata driver
469469implementations.
470470
471471
472- Default Repository (*** OPTIONAL* **)
472+ Default Repository (**OPTIONAL **)
473473-----------------------------------
474474
475475Specifies the FQCN of a subclass of the EntityRepository.
@@ -484,7 +484,7 @@ That will be available for all entities without a custom repository class.
484484 The default value is ``Doctrine\ORM\EntityRepository ``.
485485Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
486486
487- Ignoring entities (*** OPTIONAL* **)
487+ Ignoring entities (**OPTIONAL **)
488488-----------------------------------
489489
490490Specifies the Entity FQCNs to ignore.
0 commit comments