Skip to content

Commit 3271d8f

Browse files
authored
Fix markup for variable names (#9150)
Three references to `$isDevMode` were marked up with a single backtick, however two backticks are required in order for the variable name to be highlighted correctly (c.f. `ArrayCache`).
1 parent 3622381 commit 3271d8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/en/reference/configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ Or if you prefer YAML:
8585

8686
Inside the ``Setup`` methods several assumptions are made:
8787

88-
- If `$isDevMode` is true caching is done in memory with the ``ArrayCache``. Proxy objects are recreated on every request.
89-
- If `$isDevMode` is false, check for Caches in the order APC, Xcache, Memcache (127.0.0.1:11211), Redis (127.0.0.1:6379) unless `$cache` is passed as fourth argument.
90-
- If `$isDevMode` is false, set then proxy classes have to be explicitly created through the command line.
88+
- If ``$isDevMode`` is true caching is done in memory with the ``ArrayCache``. Proxy objects are recreated on every request.
89+
- If ``$isDevMode`` is false, check for Caches in the order APC, Xcache, Memcache (127.0.0.1:11211), Redis (127.0.0.1:6379) unless `$cache` is passed as fourth argument.
90+
- If ``$isDevMode`` is false, set then proxy classes have to be explicitly created through the command line.
9191
- If third argument `$proxyDir` is not set, use the systems temporary directory.
9292

9393
If you want to configure Doctrine in more detail, take a look at the :doc:`Advanced Configuration <reference/advanced-configuration>` section.

0 commit comments

Comments
 (0)