@@ -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
@@ -145,15 +145,15 @@ configuration from the right *environment*.
145
145
146
146
Environments have been covered extensively
147
147
:doc: `in the previous chapter </cookbook/configuration/environments >`,
148
- and you probably remember that the Standard Edition comes with three
148
+ and you probably remember that the Symfony Standard Edition comes with three
149
149
of them - ``dev ``, ``prod `` and ``test ``.
150
150
151
151
More technically, these names are nothing more than strings passed from the
152
152
front controller to the ``AppKernel ``'s constructor. This name can then be
153
153
used in the :method: `Symfony\\ Component\\ HttpKernel\\ KernelInterface::registerContainerConfiguration `
154
154
method to decide which configuration files to load.
155
155
156
- The Standard Edition's `AppKernel `_ class implements this method by simply
156
+ The Symfony Standard Edition's `AppKernel `_ class implements this method by simply
157
157
loading the ``app/config/config_*environment*.yml `` file. You are, of course,
158
158
free to implement this method differently if you need a more sophisticated
159
159
way of loading your configuration.
@@ -165,5 +165,5 @@ way of loading your configuration.
165
165
.. _app/console : https://github.com/symfony/symfony-standard/blob/master/app/console
166
166
.. _AppKernel : https://github.com/symfony/symfony-standard/blob/master/app/AppKernel.php
167
167
.. _decorate : http://en.wikipedia.org/wiki/Decorator_pattern
168
- .. _RewriteRule shipped with the Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
168
+ .. _RewriteRule shipped with the Symfony Standard Edition : https://github.com/symfony/symfony-standard/blob/master/web/.htaccess
169
169
.. _template methods : http://en.wikipedia.org/wiki/Template_method_pattern
0 commit comments