Skip to content

Commit 1e15b22

Browse files
committed
Avoid triple stars
They don't have a special meaning, and are rendered like this: <strong>*REQUIRED</strong>*.
1 parent 44057b4 commit 1e15b22

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/en/reference/advanced-configuration.rst

+16-16
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Configuration Options
7171
The following sections describe all the configuration options
7272
available 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
8585
are used in Doctrine, refer to the "Proxy Objects" section further
8686
down.
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
9898
a detailed explanation on proxy classes and how they are used in
9999
Doctrine, 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
144144
directories. With this feature a single driver can support multiple
145145
directories 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``
167167
which 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``
190190
which 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
202202
executed by Doctrine. The logger class must implement the
203203
deprecated ``Doctrine\DBAL\Logging\SQLLogger`` interface.
204204

205-
Auto-generating Proxy Classes (***OPTIONAL***)
206-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
205+
Auto-generating Proxy Classes (**OPTIONAL**)
206+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
207207

208208
Proxy classes can either be generated manually through the Doctrine
209209
Console or automatically at runtime by Doctrine. The configuration
@@ -446,7 +446,7 @@ correctly if sub-namespaces use different metadata driver
446446
implementations.
447447

448448

449-
Default Repository (***OPTIONAL***)
449+
Default Repository (**OPTIONAL**)
450450
-----------------------------------
451451

452452
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.
461461
The default value is ``Doctrine\ORM\EntityRepository``.
462462
Any repository class must be a subclass of EntityRepository otherwise you got an ORMException
463463

464-
Ignoring entities (***OPTIONAL***)
464+
Ignoring entities (**OPTIONAL**)
465465
-----------------------------------
466466

467467
Specifies the Entity FQCNs to ignore.

0 commit comments

Comments
 (0)