Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6d164c3

Browse filesBrowse files
committed
Addressed issues raised in (#10798)
1 parent d579eea commit 6d164c3
Copy full SHA for 6d164c3

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed

‎best_practices/business-logic.rst

Copy file name to clipboardExpand all lines: best_practices/business-logic.rst
+3-3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.