File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
components/dependency_injection Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -981,8 +981,11 @@ in mind:
981
981
* each feature in Symfony2 (including the Symfony2 framework core) is organized
982
982
into a *bundle *, which is a structured set of files for that feature;
983
983
984
- * the **configuration ** for each bundle lives in the ``app/config `` directory
985
- and can be specified in YAML, XML or PHP;
984
+ * the **configuration ** for each bundle lives in the ``Resources/config ``
985
+ directory of the bundle and can be specified in YAML, XML or PHP;
986
+
987
+ * the global **application configuration ** lives in the ``app/Resources/config ``
988
+ directory;
986
989
987
990
* each **environment ** is accessible via a different front controller (e.g.
988
991
``app.php `` and ``app_dev.php ``) and loads a different configuration file.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ the dependency::
31
31
// ...
32
32
}
33
33
34
- You can can specify what service you would like to inject into this in the
34
+ You can specify what service you would like to inject into this in the
35
35
service container configuration:
36
36
37
37
.. configuration-block ::
You can’t perform that action at this time.
0 commit comments