Skip to content

Commit 205535c

Browse files
authored
Merge pull request #93 from bubnovKelnik/develop
Fix path to bin/console in documents Fixes #90
2 parents 68e35a2 + 453a9d0 commit 205535c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getConfigTreeBuilder()
2727
->arrayNode('features')
2828
->addDefaultsIfNotSet()
2929
->children()
30-
->booleanNode('attachment')->defaultTrue()
30+
->booleanNode('attachment')->defaultTrue()->end()
3131
->end()
3232
->end()
3333
->arrayNode('templates')

Resources/doc/setup/fosuserbundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ You can assign ROLE_TICKET_ADMIN to any user you want to be able to administer t
9999
100100
## Step 5: Create tables
101101
102-
```app/console doctrine:schema:update --force```
102+
```bin/console doctrine:schema:update --force```

Resources/doc/setup/other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ You can assign ROLE_TICKET_ADMIN to any user you want to be able to administer t
9393
9494
## Step 5: Create tables
9595
96-
```app/console doctrine:schema:update --force```
96+
```bin/console doctrine:schema:update --force```

0 commit comments

Comments
 (0)