From 68f7b5f8d6cac466128d8c34efc27603067c1041 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Wed, 22 Feb 2023 18:17:50 +0100 Subject: [PATCH] Add concordance list for check types --- src/MDConcCheckTypes.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/MDConcCheckTypes.php 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, + ]; + +}