Skip to content

Commit

Permalink
Merge branch '3.2.x-merge-up-into-3.3.x_mFt9d1RS' into 3.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
goetas committed Oct 15, 2021
2 parents 87902d4 + 51e4703 commit 1967775
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ public function getConfiguration(): Configuration
$configuration->setAllOrNothing(is_bool($value) ? $value : BooleanStringFormatter::toBoolean($value, false));
},
'transactional' => static function ($value, Configuration $configuration): void {
$configuration->setAllOrNothing(is_bool($value) ? $value : BooleanStringFormatter::toBoolean($value, true));
$configuration->setTransactional(is_bool($value) ? $value : BooleanStringFormatter::toBoolean($value, true));
},
'check_database_platform' => static function ($value, Configuration $configuration): void {
$configuration->setCheckDatabasePlatform(is_bool($value) ? $value : BooleanStringFormatter::toBoolean($value, false));
Expand Down

0 comments on commit 1967775

Please sign in to comment.