File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ The ``composer.json`` file should include at least the following metadata:
480
480
Consists of the vendor and the short bundle name. If you are releasing the
481
481
bundle on your own instead of on behalf of a company, use your personal name
482
482
(e.g. ``johnsmith/blog-bundle ``). Exclude the vendor name from the bundle
483
- short name and separate each word with an hyphen. For example: AcmeBlogBundle
483
+ short name and separate each word with a hyphen. For example: AcmeBlogBundle
484
484
is transformed into ``blog-bundle `` and AcmeSocialConnectBundle is
485
485
transformed into ``social-connect-bundle ``.
486
486
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ bundle in the console using the Yaml format.
332
332
333
333
As long as your bundle's configuration is located in the standard location
334
334
(``YourBundle\DependencyInjection\Configuration ``) and does not have
335
- a constructor it will work automatically. If you
335
+ a constructor, it will work automatically. If you
336
336
have something different, your ``Extension `` class must override the
337
337
:method: `Extension::getConfiguration() <Symfony\\ Component\\ DependencyInjection\\ Extension\\ Extension::getConfiguration> `
338
338
method and return an instance of your ``Configuration ``.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ How to Simplify Configuration of Multiple Bundles
8
8
When building reusable and extensible applications, developers are often
9
9
faced with a choice: either create a single large bundle or multiple smaller
10
10
bundles. Creating a single bundle has the drawback that it's impossible for
11
- users to choose to remove functionality they are not using . Creating multiple
11
+ users to remove unused functionality . Creating multiple
12
12
bundles has the drawback that configuration becomes more tedious and settings
13
13
often need to be repeated for various bundles.
14
14
You can’t perform that action at this time.
0 commit comments