fix: drupal.docroot can be null

This commit is contained in:
Oliver Davies 2023-04-07 20:55:23 +01:00
parent a97264d99c
commit e3a93065de

View file

@ -22,7 +22,7 @@ final class ConfigurationData
#[Assert\Collection( #[Assert\Collection(
allowExtraFields: false, allowExtraFields: false,
fields: ['docroot' => new Assert\Choice(['web', 'docroot'])], fields: ['docroot' => new Assert\Choice([null, 'web', 'docroot'])],
)] )]
public array $drupal; public array $drupal;