From d78abca4c21d2a680fbbc0f3e907c49ebf7e7bc6 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Thu, 6 Aug 2020 14:57:46 +0200 Subject: [PATCH] Add controlled list of marking types --- src/MDMarkingTypesSet.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/MDMarkingTypesSet.php diff --git a/src/MDMarkingTypesSet.php b/src/MDMarkingTypesSet.php new file mode 100644 index 0000000..e4c92e3 --- /dev/null +++ b/src/MDMarkingTypesSet.php @@ -0,0 +1,23 @@ + + */ + +/** + * Class containing available marking types. + */ +class MDMarkingTypesSet { + + const MARKING_TYPES = [ + 'signature', + 'engraving', + 'watermark', + 'scratch', + 'stamp', + 'overprint', + 'embossing' + ]; + +}