From bfc9c79dd6b728a41d1de988f545f6e64728a51d Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Mon, 13 Jun 2022 16:03:46 +0200 Subject: [PATCH] Add constant --- src/SAML2/Constants.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SAML2/Constants.php b/src/SAML2/Constants.php index b58c89e3e..0cc5cee71 100644 --- a/src/SAML2/Constants.php +++ b/src/SAML2/Constants.php @@ -447,4 +447,9 @@ class Constants * The maximum size for any entityid as per specification */ public const ENTITYID_MAX_LENGTH = 1024; + + /** + * The maximum size for any entityid as per SAML2INT-specification + */ + public const SAML2INT_ENTITYID_MAX_LENGTH = 256; }