Add concordance list for check types

This commit is contained in:
Joshua Ramon Enslin 2023-02-22 18:17:50 +01:00
parent 03ca5c8406
commit 68f7b5f8d6
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

18
src/MDConcCheckTypes.php Normal file
View File

@ -0,0 +1,18 @@
<?PHP
/**
* Constains lists for categorizing misspelled check types.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Provides lists for categorizing misspelled check types.
*/
final class MDConcCheckTypes {
const CHECK_TYPES = [
"Vollständigkeit" => MDObjectCheckType::completeness_check,
];
}