Skip to content

Commit

Permalink
Added missing EType constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekyna committed Jul 6, 2023
1 parent 69ca25c commit ab2d60e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/EPrint/Enum/EType.php
Original file line number Diff line number Diff line change
Expand Up @@ -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


/**
Expand All @@ -33,6 +37,8 @@ public static function getValues(): array
EType::MASTER,
EType::COLLECTION_REQUEST,
EType::BIC3,
EType::PROOFBIC3,
EType::REVERSEBIC3,
];
}

Expand Down

0 comments on commit ab2d60e

Please sign in to comment.