Add controlled list of marking types

This commit is contained in:
Joshua Ramon Enslin 2020-08-06 14:57:46 +02:00 committed by Stefan Rohde-Enslin
parent 4e3c98719c
commit d78abca4c2

23
src/MDMarkingTypesSet.php Normal file
View File

@ -0,0 +1,23 @@
<?PHP
/**
* Contains a class for controlling the list of available marking types.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
/**
* Class containing available marking types.
*/
class MDMarkingTypesSet {
const MARKING_TYPES = [
'signature',
'engraving',
'watermark',
'scratch',
'stamp',
'overprint',
'embossing'
];
}