File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -383,7 +383,9 @@ set in the previous ones):
383
383
384
384
#. ``config/packages/*.yaml `` (and ``*.xml `` and ``*.php `` files too);
385
385
#. ``config/packages/<environment-name>/*.yaml `` (and ``*.xml `` and ``*.php `` files too);
386
- #. ``config/packages/services.yaml `` (and ``services.xml `` and ``services.php `` files too);
386
+ #. ``config/services.yaml `` (and ``services.xml `` and ``services.php `` files too);
387
+ #. ``config/services_<environment-name>.yaml `` (and ``services_<environment-name>.xml ``
388
+ and ``services_<environment-name>.php `` files too).
387
389
388
390
Take the ``framework `` package, installed by default, as an example:
389
391
Original file line number Diff line number Diff line change @@ -244,15 +244,15 @@ the directory of the environment you're using (most commonly ``dev/`` while
244
244
developing and debugging). While it can vary, the ``var/cache/dev/ `` directory
245
245
includes the following:
246
246
247
- ``appDevDebugProjectContainer .php ``
247
+ ``srcApp_KernelDevDebugContainer .php ``
248
248
The cached "service container" that represents the cached application
249
249
configuration.
250
250
251
- ``appDevUrlGenerator .php ``
251
+ ``UrlGenerator .php ``
252
252
The PHP class generated from the routing configuration and used when
253
253
generating URLs.
254
254
255
- ``appDevUrlMatcher .php ``
255
+ ``UrlMatcher .php ``
256
256
The PHP class used for route matching - look here to see the compiled regular
257
257
expression logic used to match incoming URLs to different routes.
258
258
You can’t perform that action at this time.
0 commit comments