Skip to content

Commit

Permalink
Merge pull request #67 from GameplayJDK/1.x-change_config_visibility_…
Browse files Browse the repository at this point in the history
…default

Change the default visibility to 'public' in config
  • Loading branch information
tgalopin authored Sep 12, 2022
2 parents f314ffd + c64718f commit f022c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function getConfigTreeBuilder()
->end()
->defaultValue([])
->end()
->scalarNode('visibility')->defaultNull()->end()
->scalarNode('visibility')->defaultValue('public')->end()
->booleanNode('case_sensitive')->defaultTrue()->end()
->booleanNode('disable_asserts')->defaultFalse()->end()
->end()
Expand Down

0 comments on commit f022c00

Please sign in to comment.