@@ -67,7 +67,7 @@ class name.
6767
6868.. note ::
6969
70- Symfony2 core Bundles do not prefix the Bundle class with ``Symfony ``
70+ Symfony core Bundles do not prefix the Bundle class with ``Symfony ``
7171 and always add a ``Bundle `` sub-namespace; for example:
7272 :class: `Symfony\\ Bundle\\ FrameworkBundle\\ FrameworkBundle `.
7373
@@ -160,8 +160,7 @@ instance, a ``HelloController`` controller is stored in
160160``Bundle/HelloBundle/Controller/HelloController.php `` and the fully qualified
161161class name is ``Bundle\HelloBundle\Controller\HelloController ``.
162162
163- All classes and files must follow the Symfony2 coding
164- :doc: `standards </contributing/code/standards >`.
163+ All classes and files must follow the Symfony coding :doc: `standards </contributing/code/standards >`.
165164
166165Some classes should be seen as facades and should be as short as possible, like
167166Commands, Helpers, Listeners, and Controllers.
@@ -175,7 +174,7 @@ Vendors
175174-------
176175
177176A bundle must not embed third-party PHP libraries. It should rely on the
178- standard Symfony2 autoloading instead.
177+ standard Symfony autoloading instead.
179178
180179A bundle should not embed third-party libraries written in JavaScript, CSS, or
181180any other language.
@@ -248,13 +247,13 @@ following standardized instructions in your ``README.md`` file.
248247 {
249248 $bundles = array(
250249 // ...
251-
250+
252251 new <vendor>\<bundle-name>\<bundle-long-name>(),
253252 );
254-
253+
255254 // ...
256255 }
257-
256+
258257 // ...
259258 }
260259 ```
@@ -291,10 +290,10 @@ Configuration
291290-------------
292291
293292To provide more flexibility, a bundle can provide configurable settings by
294- using the Symfony2 built-in mechanisms.
293+ using the Symfony built-in mechanisms.
295294
296295For simple configuration settings, rely on the default ``parameters `` entry of
297- the Symfony2 configuration. Symfony2 parameters are simple key/value pairs; a
296+ the Symfony configuration. Symfony parameters are simple key/value pairs; a
298297value being any valid PHP value. Each parameter name should start with the
299298bundle alias, though this is just a best-practice suggestion. The rest of the
300299parameter name will use a period (``. ``) to separate different parts (e.g.
0 commit comments