From 59c34dabd78567476140510d54415dcd8198ffcc Mon Sep 17 00:00:00 2001 From: nobohan Date: Thu, 12 Sep 2024 17:18:13 +0200 Subject: [PATCH] Signature: allow for null index in signature zone --- .../Service/Signature/Driver/BaseSigner/PdfSignedMessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillDocStoreBundle/Service/Signature/Driver/BaseSigner/PdfSignedMessage.php b/src/Bundle/ChillDocStoreBundle/Service/Signature/Driver/BaseSigner/PdfSignedMessage.php index 3116e3b62..9368f188b 100644 --- a/src/Bundle/ChillDocStoreBundle/Service/Signature/Driver/BaseSigner/PdfSignedMessage.php +++ b/src/Bundle/ChillDocStoreBundle/Service/Signature/Driver/BaseSigner/PdfSignedMessage.php @@ -18,7 +18,7 @@ final readonly class PdfSignedMessage { public function __construct( public readonly int $signatureId, - public readonly int $signatureZoneIndex, + public readonly ?int $signatureZoneIndex, public readonly string $content, ) {} }