@@ -58,7 +58,7 @@ As you can see, this URL contains the PHP script to be used as the front
58
58
controller. You can use that to easily switch the front controller or use
59
59
a custom one by placing it in the ``web/ `` directory (e.g. ``app_cache.php ``).
60
60
61
- When using Apache and the `RewriteRule shipped with the Standard Edition `_,
61
+ When using Apache and the `RewriteRule shipped with the Symfony Standard Edition `_,
62
62
you can omit the filename from the URL and the RewriteRule will use ``app.php ``
63
63
as the default one.
64
64
@@ -148,15 +148,15 @@ configuration from the right *environment*.
148
148
149
149
Environments have been covered extensively
150
150
:doc: `in the previous chapter </cookbook/configuration/environments >`,
151
- and you probably remember that the Standard Edition comes with three
151
+ and you probably remember that the Symfony Standard Edition comes with three
152
152
of them - ``dev ``, ``prod `` and ``test ``.
153
153
154
154
More technically, these names are nothing more than strings passed from the
155
155
front controller to the ``AppKernel ``'s constructor. This name can then be
156
156
used in the :method: `Symfony\\ Component\\ HttpKernel\\ KernelInterface::registerContainerConfiguration `
157
157
method to decide which configuration files to load.
158
158
159
- The Standard Edition's `AppKernel `_ class implements this method by simply
159
+ The Symfony Standard Edition's `AppKernel `_ class implements this method by simply
160
160
loading the ``app/config/config_*environment*.yml `` file. You are, of course,
161
161
free to implement this method differently if you need a more sophisticated
162
162
way of loading your configuration.
@@ -168,5 +168,5 @@ way of loading your configuration.
168
168
.. _app/console : https://github.com/symfony/symfony-standard/blob/master/app/console
169
169
.. _AppKernel : https://github.com/symfony/symfony-standard/blob/master/app/AppKernel.php
170
170
.. _decorate : http://en.wikipedia.org/wiki/Decorator_pattern
171
- .. _RewriteRule shipped with the Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
171
+ .. _RewriteRule shipped with the Symfony Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
172
172
.. _template methods : http://en.wikipedia.org/wiki/Template_method_pattern
0 commit comments