@@ -22,7 +22,7 @@ can be.
2222 easy, and explained in the ":doc: `/cookbook/doctrine/dbal `" cookbook entry.
2323
2424 You can also persist data to `MongoDB `_ using Doctrine ODM library. For
25- more information, read the ":doc: ` /bundles/ DoctrineMongoDBBundle/index ` "
25+ more information, read the "` DoctrineMongoDBBundle `_ "
2626 documentation.
2727
2828A Simple Example: A Product
@@ -471,10 +471,10 @@ in your application. To do this, run:
471471 new column to the existing ``product `` table.
472472
473473 An even better way to take advantage of this functionality is via
474- :doc: `migrations < /bundles/DoctrineMigrationsBundle/index >` , which allow you to
475- generate these SQL statements and store them in migration classes that
476- can be run systematically on your production server in order to track
477- and migrate your database schema safely and reliably.
474+ `migrations `_ , which allow you to generate these SQL statements and store
475+ them in migration classes that can be run systematically on your production
476+ server in order to track and migrate your database schema safely and
477+ reliably.
478478
479479Your database now has a fully-functional ``product `` table with columns that
480480match the metadata you've specified.
@@ -559,7 +559,7 @@ an ``UPDATE`` query if the record already exists in the database.
559559
560560 Doctrine provides a library that allows you to programmatically load testing
561561 data into your project (i.e. "fixture data"). For information, see
562- :doc: ` /bundles/ DoctrineFixturesBundle/index ` .
562+ the "` DoctrineFixturesBundle `_" documentation .
563563
564564Fetching Objects from the Database
565565~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -586,8 +586,7 @@ on its ``id`` value::
586586.. tip ::
587587
588588 You can achieve the equivalent of this without writing any code by using
589- the ``@ParamConverter `` shortcut. See the
590- :doc: `FrameworkExtraBundle documentation </bundles/SensioFrameworkExtraBundle/annotations/converters >`
589+ the ``@ParamConverter `` shortcut. See the `FrameworkExtraBundle documentation `_
591590 for more details.
592591
593592When you query for a particular type of object, you always use what's known
@@ -1083,7 +1082,7 @@ table, and ``product.category_id`` column, and new foreign key:
10831082
10841083 This task should only be really used during development. For a more robust
10851084 method of systematically updating your production database, read about
1086- :doc: ` Doctrine migrations < /bundles/DoctrineMigrationsBundle/index >` .
1085+ ` migrations `_ .
10871086
10881087Saving Related Entities
10891088~~~~~~~~~~~~~~~~~~~~~~~
@@ -1400,8 +1399,8 @@ For more information about Doctrine, see the *Doctrine* section of the
14001399
14011400* :doc: `/cookbook/doctrine/common_extensions `
14021401* :doc: `/cookbook/doctrine/console `
1403- * :doc: `/bundles/ DoctrineFixturesBundle/index `
1404- * :doc: `/bundles/ DoctrineMongoDBBundle/index `
1402+ * :doc: `DoctrineFixturesBundle `
1403+ * :doc: `DoctrineMongoDBBundle `
14051404
14061405.. _`Doctrine` : http://www.doctrine-project.org/
14071406.. _`MongoDB` : http://www.mongodb.org/
@@ -1414,3 +1413,7 @@ For more information about Doctrine, see the *Doctrine* section of the
14141413.. _`Lifecycle Events documentation` : http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/events.html#lifecycle-events
14151414.. _`Reserved SQL keywords documentation` : http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#quoting-reserved-words
14161415.. _`Persistent classes` : http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#persistent-classes
1416+ .. _`DoctrineMongoDBBundle` : http://symfony.com/doc/current/bundles/DoctrineMongoDBBundle/index.html
1417+ .. _`migrations` : http://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html
1418+ .. _`DoctrineFixturesBundle` : http://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html
1419+ .. _`FrameworkExtraBundle documentation` : http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
0 commit comments