From 989a005b10401a10ed9e49d445c549c60bbfa41d Mon Sep 17 00:00:00 2001 From: "celine.c" Date: Mon, 21 Oct 2024 15:59:26 +0200 Subject: [PATCH] fix: add missing externalId in validator result option resolver --- Model/ValidatorResult.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Model/ValidatorResult.php b/Model/ValidatorResult.php index 0e79047..a53e809 100644 --- a/Model/ValidatorResult.php +++ b/Model/ValidatorResult.php @@ -43,6 +43,7 @@ public static function configureData(OptionsResolver $resolver): void ->setDefault('reason', null)->setAllowedTypes('reason', ['int', 'null']) ->setDefault('reasonMessage', null)->setAllowedTypes('reasonMessage', ['string', 'null']) ->setDefault('result', null)->setAllowedTypes('result', ['array', 'null']) + ->setDefault('externalId', null)->setAllowedTypes('externalId', ['string', 'null']) ; }