File tree 3 files changed +7
-6
lines changed
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
74
74
or want these configuration values to change on each server.
75
75
76
76
The 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 ``
79
79
files so that you can override specific values for each environment.
80
80
81
81
Constants vs Configuration Options
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ For example:
139
139
140
140
use AppBundle\Entity\Post;
141
141
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
142
-
142
+
143
143
/**
144
144
* @Route("/{id}", name="admin_post_show")
145
145
*/
@@ -212,6 +212,7 @@ Pre and Post Hooks
212
212
------------------
213
213
214
214
If 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 >`.
216
217
217
218
.. _`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:
165
165
166
166
If you need more control over how your fields are rendered, then you should
167
167
remove 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.
170
170
171
171
Handling Form Submits
172
172
---------------------
You can’t perform that action at this time.
0 commit comments