Fix PHP validation pattern for Hungarian Statistical Office

This commit is contained in:
Joshua Ramon Enslin 2023-04-09 13:22:48 +02:00
parent 06a39eb147
commit 33cc6fc1b3
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -19,7 +19,7 @@ enum MDInstitutionExternalIdRepository implements MDValueEnumInterface, JsonSeri
];
const VALIDATION_PATTERN_PHP = [
'hu_ksh' => '[0-9]{8}-[0-9]{4}-[0-9]{3}-[0-9]{2}',
'hu_ksh' => '/^[0-9]{8}-[0-9]{4}-[0-9]{3}-[0-9]{2}$/',
];
/**