Skip to content
Snippets Groups Projects
Commit 335ce966 authored by Mateusz Charytoniuk's avatar Mateusz Charytoniuk
Browse files

chore: type changes for macos compatibility

parent 2463a724
Branches
Tags
No related merge requests found
......@@ -46,7 +46,7 @@ final readonly class DatabaseConfigurationProvider extends ConfigurationProvider
'driver' => new EnumConstraint(DatabaseConnectionPoolDriverName::values()),
'host' => (new StringConstraint())->default(null),
'log_queries' => new BooleanConstraint(),
'password' => (new StringConstraint())->nullable(),
'password' => (new StringConstraint(isEmptyAllowed: true))->nullable(),
'pool_prefill' => (new BooleanConstraint())->default(true),
'pool_size' => new IntegerConstraint(),
'port' => (new IntegerConstraint())->nullable()->default(3306),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment