From ab2d60e23332e382d5955975e172eea2afc7c2ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Dauvergne?= Date: Thu, 6 Jul 2023 15:35:55 +0200 Subject: [PATCH] Added missing EType constants. --- src/EPrint/Enum/EType.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/EPrint/Enum/EType.php b/src/EPrint/Enum/EType.php index 4c4b32f..0ab39ff 100644 --- a/src/EPrint/Enum/EType.php +++ b/src/EPrint/Enum/EType.php @@ -17,7 +17,11 @@ final class EType implements EnumInterface public const EPRINT_ATTACHMENT = 'EPRINTATTACHMENT'; // Récapitulatif d’envoi public const MASTER = 'MASTER'; public const COLLECTION_REQUEST = 'COLLECTIONREQUEST'; - public const BIC3 = 'BIC3'; + + // new GeoLabel constants + public const BIC3 = 'BIC3'; + public const PROOFBIC3 = 'PROOFBIC3'; // Preuve de dépôt + public const REVERSEBIC3 = 'REVERSEBIC3'; // Preuve de dépôt /** @@ -33,6 +37,8 @@ public static function getValues(): array EType::MASTER, EType::COLLECTION_REQUEST, EType::BIC3, + EType::PROOFBIC3, + EType::REVERSEBIC3, ]; }