Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0ef650

Browse files
javiereguiluzweaverryan
authored andcommitted
More tweaks and fixes
1 parent a09857b commit d0ef650

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

cookbook/bundles/best_practices.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ the following standardized instructions in your ``README.md`` file.
219219
$ composer require <package-name> "~1"
220220
```
221221
222-
This command requires to have installed Composer globally, as explained
222+
This command requires to have Composer installed globally, as explained
223223
in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
224224
of Composer documentation.
225225
@@ -233,17 +233,18 @@ the following standardized instructions in your ``README.md`` file.
233233
<?php
234234
// app/AppKernel.php
235235
236+
// ...
237+
236238
public function registerBundles()
237239
{
238240
$bundles = array(
239241
// ...
240-
241242
new <vendor>\<bundle-name>\<bundle-long-name>(),
242243
);
243244
}
244245
```
245246
246-
Optionally you can add *Step 3*, *Step 4*, etc. to explain other required
247+
Optionally, you can add *Step 3*, *Step 4*, etc. to explain other required
247248
installation steps, such as registering routes or dumping assets.
248249

249250

0 commit comments

Comments
 (0)