Skip to content

Commit c54e5c8

Browse files
committed
Fix config errors
1 parent 99e329f commit c54e5c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function getConfigTreeBuilder()
8787
->canBeEnabled()
8888
->children()
8989
->scalarNode('ip')->defaultNull()->end()
90-
->booleanNode('user_faker')->defaultFalse()->end()
90+
->booleanNode('use_faker')->defaultFalse()->end()
9191
->end()
9292
->end();
9393

Resources/doc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ bazinga_geocoder:
207207

208208
If set, the parameter will replace all instances of "127.0.0.1" in your queries and replace them with the given one.
209209

210-
You can also let [Faker](https://github.com/fzaninotto/Faker) generates fake ip for you.
210+
You can also let [Faker](https://github.com/fzaninotto/Faker) generate fake ip for you.
211211

212212
```yaml
213213
bazinga_geocoder:
214214
fake_ip:
215-
user_faker: true # default false
215+
use_faker: true # default false
216216
```
217217

218218
### Cache Results

0 commit comments

Comments
 (0)