diff --git a/src/MDConcCheckTypes.php b/src/MDConcCheckTypes.php new file mode 100644 index 0000000..575d677 --- /dev/null +++ b/src/MDConcCheckTypes.php @@ -0,0 +1,18 @@ + + */ +declare(strict_types = 1); + +/** + * Provides lists for categorizing misspelled check types. + */ +final class MDConcCheckTypes { + + const CHECK_TYPES = [ + "Vollständigkeit" => MDObjectCheckType::completeness_check, + ]; + +}