File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ add an extra layer of configuration that's not needed because you don't need
7474or want these configuration values to change on each server.
7575
7676The configuration options defined in the ``config.yml `` file usually vary from
77- one :doc: `/cookbook/configuration/environments ` to another. That's why Symfony
78- already includes ``app/config/config_dev.yml `` and ``app/config/config_prod.yml ``
77+ one :doc: `environment < /cookbook/configuration/environments > ` to another. That's
78+ why Symfony already includes ``app/config/config_dev.yml `` and ``app/config/config_prod.yml ``
7979files so that you can override specific values for each environment.
8080
8181Constants vs Configuration Options
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ For example:
139139
140140 use AppBundle\Entity\Post;
141141 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
142-
142+
143143 /**
144144 * @Route("/{id}", name="admin_post_show")
145145 */
@@ -212,6 +212,7 @@ Pre and Post Hooks
212212------------------
213213
214214If you need to execute some code before or after the execution of your controllers,
215- you can use the EventDispatcher component to :doc: `/cookbook/event_dispatcher/before_after_filters `.
215+ you can use the EventDispatcher component to
216+ :doc: `set up before and after filters </cookbook/event_dispatcher/before_after_filters >`.
216217
217218.. _`ParamConverter` : http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ fields:
165165
166166If you need more control over how your fields are rendered, then you should
167167remove the ``form_widget(form) `` function and render your fields individually.
168- See :doc: `/cookbook/form/form_customization ` for more information on this and how
169- you can control *how * the form renders at a global level using form theming.
168+ See :doc: `/cookbook/form/form_customization ` article for more information on this
169+ and how you can control *how * the form renders at a global level using form theming.
170170
171171Handling Form Submits
172172---------------------
You can’t perform that action at this time.
0 commit comments