Skip to content

Commit 12b78ef

Browse files
committed
Transform all code titles to literals
1 parent 87a7623 commit 12b78ef

File tree

151 files changed

+1381
-1374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+1381
-1374
lines changed

reference/configuration/assetic.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Assetic Configuration Reference (AsseticBundle)
66

77
.. include:: /assetic/_standard_edition_warning.rst.inc
88

9-
You can get the full Asstic configuration reference as follows:
9+
You can get the full Assetic configuration reference as follows:
1010

1111
.. code-block:: terminal
1212

reference/configuration/debug.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,20 @@ Configuration
3232
* `min_depth`_
3333
* `max_string_length`_
3434

35-
max_items
36-
~~~~~~~~~
35+
``max_items``
36+
~~~~~~~~~~~~~
3737

3838
**type**: ``integer`` **default**: ``2500``
3939

4040
This is the maximum number of items to dump. Setting this option to ``-1``
4141
disables the limit.
4242

43-
min_depth
44-
~~~~~~~~~
43+
``min_depth``
44+
~~~~~~~~~~~~~
45+
46+
.. versionadded:: 3.4
47+
48+
The ``min_depth`` option was introduced in Symfony 3.4.
4549

4650
**type**: ``integer`` **default**: ``1``
4751

@@ -50,20 +54,16 @@ be cloned. After this depth is reached, only ``max_items`` items will be
5054
cloned. The default value is ``1``, which is consistent with older Symfony
5155
versions.
5256

53-
.. versionadded:: 3.4
54-
55-
The ``min_depth`` option was introduced in Symfony 3.4.
56-
57-
max_string_length
58-
~~~~~~~~~~~~~~~~~
57+
``max_string_length``
58+
~~~~~~~~~~~~~~~~~~~~~
5959

6060
**type**: ``integer`` **default**: ``-1``
6161

6262
This option configures the maximum string length before truncating the
6363
string. The default value (``-1``) means that strings are never truncated.
6464

65-
dump_destination
66-
~~~~~~~~~~~~~~~~
65+
``dump_destination``
66+
~~~~~~~~~~~~~~~~~~~~
6767

6868
**type**: ``string`` **default**: ``null``
6969

reference/configuration/doctrine.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -247,39 +247,39 @@ Explicit definition of all the mapped entities is the only necessary
247247
configuration for the ORM and there are several configuration options that
248248
you can control. The following configuration options exist for a mapping:
249249

250-
type
251-
....
250+
``type``
251+
........
252252

253253
One of ``annotation``, ``xml``, ``yml``, ``php`` or ``staticphp``. This
254254
specifies which type of metadata type your mapping uses.
255255

256-
dir
257-
...
256+
``dir``
257+
.......
258258

259259
Path to the mapping or entity files (depending on the driver). If this path
260260
is relative, it is assumed to be relative to the bundle root. This only works
261261
if the name of your mapping is a bundle name. If you want to use this option
262262
to specify absolute paths you should prefix the path with the kernel parameters
263263
that exist in the DIC (for example ``%kernel.project_dir%``).
264264

265-
prefix
266-
......
265+
``prefix``
266+
..........
267267

268268
A common namespace prefix that all entities of this mapping share. This
269269
prefix should never conflict with prefixes of other defined mappings otherwise
270270
some of your entities cannot be found by Doctrine. This option defaults
271271
to the bundle namespace + ``Entity``, for example for an application bundle
272272
called AcmeHelloBundle prefix would be ``Acme\HelloBundle\Entity``.
273273

274-
alias
275-
.....
274+
``alias``
275+
.........
276276

277277
Doctrine offers a way to alias entity namespaces to simpler, shorter names
278278
to be used in DQL queries or for Repository access. When using a bundle
279279
the alias defaults to the bundle name.
280280

281-
is_bundle
282-
.........
281+
``is_bundle``
282+
.............
283283

284284
This option is a derived value from ``dir`` and by default is set to ``true``
285285
if dir is relative proved by a ``file_exists()`` check that returns ``false``.
@@ -437,7 +437,7 @@ Default Value of Dir
437437

438438
If ``dir`` is not specified, then its default value depends on which configuration
439439
driver is being used. For drivers that rely on the PHP files (annotation,
440-
staticphp) it will be ``[Bundle]/Entity``. For drivers that are using
440+
``staticphp``) it will be ``[Bundle]/Entity``. For drivers that are using
441441
configuration files (XML, YAML, ...) it will be
442442
``[Bundle]/Resources/config/doctrine``.
443443

0 commit comments

Comments
 (0)