Skip to content

Commit 6d164c3

Browse files
committed
Addressed issues raised in (#10798)
1 parent d579eea commit 6d164c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

best_practices/business-logic.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,12 @@ In practice, many Symfony applications rely on the independent
193193
`Doctrine project`_ to define their model using entities and repositories.
194194

195195
Doctrine support is not enabled by default in Symfony. So to use Doctrine
196-
as shown in the examples below you will need to install `Doctrine ORM support`_
196+
as shown in the examples below you will need to install :doc:`Doctrine ORM support </doctrine>`
197197
by executing the following command:
198198

199199
.. code-block:: terminal
200200
201-
$ composer require "symfony/orm-pack"
201+
$ composer require symfony/orm-pack
202202
203203
Just like with business logic, we recommend storing Doctrine entities in the
204204
AppBundle.
@@ -310,7 +310,7 @@ the following command to install the Doctrine fixtures bundle:
310310

311311
.. code-block:: terminal
312312
313-
$ composer require "doctrine/doctrine-fixtures-bundle"
313+
$ composer require doctrine/doctrine-fixtures-bundle
314314
315315
Then, enable the bundle in ``AppKernel.php``, but only for the ``dev`` and
316316
``test`` environments::

0 commit comments

Comments
 (0)