@@ -67,7 +67,7 @@ class name.
67
67
68
68
.. note ::
69
69
70
- Symfony2 core Bundles do not prefix the Bundle class with ``Symfony ``
70
+ Symfony core Bundles do not prefix the Bundle class with ``Symfony ``
71
71
and always add a ``Bundle `` sub-namespace; for example:
72
72
:class: `Symfony\\ Bundle\\ FrameworkBundle\\ FrameworkBundle `.
73
73
@@ -160,8 +160,7 @@ instance, a ``HelloController`` controller is stored in
160
160
``Bundle/HelloBundle/Controller/HelloController.php `` and the fully qualified
161
161
class name is ``Bundle\HelloBundle\Controller\HelloController ``.
162
162
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 >`.
165
164
166
165
Some classes should be seen as facades and should be as short as possible, like
167
166
Commands, Helpers, Listeners, and Controllers.
@@ -175,7 +174,7 @@ Vendors
175
174
-------
176
175
177
176
A bundle must not embed third-party PHP libraries. It should rely on the
178
- standard Symfony2 autoloading instead.
177
+ standard Symfony autoloading instead.
179
178
180
179
A bundle should not embed third-party libraries written in JavaScript, CSS, or
181
180
any other language.
@@ -248,13 +247,13 @@ following standardized instructions in your ``README.md`` file.
248
247
{
249
248
$bundles = array(
250
249
// ...
251
-
250
+
252
251
new <vendor>\<bundle-name>\<bundle-long-name>(),
253
252
);
254
-
253
+
255
254
// ...
256
255
}
257
-
256
+
258
257
// ...
259
258
}
260
259
```
@@ -291,10 +290,10 @@ Configuration
291
290
-------------
292
291
293
292
To provide more flexibility, a bundle can provide configurable settings by
294
- using the Symfony2 built-in mechanisms.
293
+ using the Symfony built-in mechanisms.
295
294
296
295
For 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
298
297
value being any valid PHP value. Each parameter name should start with the
299
298
bundle alias, though this is just a best-practice suggestion. The rest of the
300
299
parameter name will use a period (``. ``) to separate different parts (e.g.
0 commit comments