Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
fix: default false to config map_private_properties
Browse files Browse the repository at this point in the history
  • Loading branch information
nikophil committed Oct 4, 2023
1 parent daf7cd2 commit 0ba94e5
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 @@ -27,7 +27,7 @@ public function getConfigTreeBuilder(): TreeBuilder
->scalarNode('cache_dir')->defaultValue('%kernel.cache_dir%/automapper')->end()
->scalarNode('date_time_format')->defaultValue(\DateTimeInterface::RFC3339)->end()
->booleanNode('hot_reload')->defaultValue($this->debug)->end()
->booleanNode('map_private_properties')->defaultTrue()->end()
->booleanNode('map_private_properties')->defaultFalse()->end()
->booleanNode('allow_readonly_target_to_populate')->defaultFalse()->end()
->arrayNode('warmup')
->arrayPrototype()
Expand Down

0 comments on commit 0ba94e5

Please sign in to comment.