File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
Filter options
Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ The ``Configuration`` class to handle the sample configuration looks like::
210
210
supporting "prototype" nodes, advanced validation, XML-specific normalization
211
211
and advanced merging. You can read more about this in
212
212
:doc: `the Config component documentation </components/config/definition >`. You
213
- can also see it in action by checking out some of the core Configuration
213
+ can also see it in action by checking out some core Configuration
214
214
classes, such as the one from the `FrameworkBundle Configuration `_ or the
215
215
`TwigBundle Configuration `_.
216
216
@@ -227,7 +227,7 @@ thrown)::
227
227
}
228
228
229
229
The ``processConfiguration() `` method uses the configuration tree you've defined
230
- in the ``Configuration `` class to validate, normalize and merge all of the
230
+ in the ``Configuration `` class to validate, normalize and merge all the
231
231
configuration arrays together.
232
232
233
233
.. tip ::
@@ -253,7 +253,7 @@ configuration arrays together.
253
253
}
254
254
255
255
This class uses the ``getConfiguration() `` method to get the Configuration
256
- instance, you should override it if your Configuration class is not called
256
+ instance. You should override it, if your Configuration class is not called
257
257
``Configuration `` or if it is not placed in the same namespace as the
258
258
extension.
259
259
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ How to Install 3rd Party Bundles
7
7
Most bundles provide their own installation instructions. However, the
8
8
basic steps for installing a bundle are the same:
9
9
10
- * `A ) Add Composer Dependencies `_
11
- * `B ) Enable the Bundle `_
12
- * `C ) Configure the Bundle `_
10
+ * `a ) Add Composer Dependencies `_
11
+ * `b ) Enable the Bundle `_
12
+ * `c ) Configure the Bundle `_
13
13
14
- A ) Add Composer Dependencies
14
+ a ) Add Composer Dependencies
15
15
----------------------------
16
16
17
17
Dependencies are managed with Composer, so if Composer is new to you, learn
@@ -43,7 +43,7 @@ and download the library into the ``vendor/`` directory. If you need a specific
43
43
version, add a ``: `` and the version right after the library name (see
44
44
`composer require `_).
45
45
46
- B ) Enable the Bundle
46
+ b ) Enable the Bundle
47
47
--------------------
48
48
49
49
At this point, the bundle is installed in your Symfony project (in
@@ -68,7 +68,7 @@ The only thing you need to do now is register the bundle in ``AppKernel``::
68
68
}
69
69
}
70
70
71
- C ) Configure the Bundle
71
+ c ) Configure the Bundle
72
72
-----------------------
73
73
74
74
It's pretty common for a bundle to need some additional setup or configuration
Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ In this example you fetch the service definition of the original service, and se
90
90
its class name to your own class.
91
91
92
92
See :doc: `/cookbook/service_container/compiler_passes ` for information on how to use
93
- compiler passes. If you want to do something beyond just overriding the class -
94
- like adding a method call - you can only use the compiler pass method.
93
+ compiler passes. If you want to do something beyond just overriding the class,
94
+ like adding a method call, you can only use the compiler pass method.
95
95
96
96
Entities & Entity Mapping
97
97
-------------------------
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ often need to be repeated for various bundles.
15
15
Using the below approach, it is possible to remove the disadvantage of the
16
16
multiple bundle approach by enabling a single Extension to prepend the settings
17
17
for any bundle. It can use the settings defined in the ``app/config/config.yml ``
18
- to prepend settings just as if they would have been written explicitly by
18
+ to prepend settings just as if they had been written explicitly by
19
19
the user in the application configuration.
20
20
21
21
For example, this could be used to configure the entity manager name to use in
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Remove the ``_acme_demo`` entry at the bottom of this file.
56
56
57
57
Some bundles contain configuration in one of the ``app/config/config*.yml ``
58
58
files. Be sure to remove the related configuration from these files. You can
59
- quickly spot bundle configuration by looking for a ``acme_demo `` (or whatever
59
+ quickly spot bundle configuration by looking for an ``acme_demo `` (or whatever
60
60
the name of the bundle is, e.g. ``fos_user `` for the FOSUserBundle) string in
61
61
the configuration files.
62
62
You can’t perform that action at this time.
0 commit comments