chore: add missing values to the Config DTO

Add missing properties and constraints to the `Config` data transfer
object.
This commit is contained in:
Oliver Davies 2023-11-22 20:07:11 +00:00
parent 517309e222
commit 95012241e1
2 changed files with 193 additions and 33 deletions

View file

@ -96,8 +96,6 @@ class ConfigurationValidatorTest extends KernelTestCase
return [
yield 'Non-empty string' => ['test', 0],
yield 'Empty string' => ['', 1],
yield 'False' => [false, 1],
yield 'Null' => [null, 1],
];
}