Add missing newlines between constants in MDEventsSet and

MDRequirementsSet
This commit is contained in:
Joshua Ramon Enslin 2021-10-11 15:11:15 +02:00
parent ca5be31efb
commit ee24739002
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
2 changed files with 5 additions and 0 deletions

View File

@ -62,12 +62,16 @@ final class MDEventsSet extends MDValueSet {
];
const EVENTS_PRODUCTION = [1, 7, 9, 10, 19, 20, 26, 38, 39];
// Array enthält solche Ereignisse, die nach der Herstellung passiert sein müssen
const EVENTS_POST_PRODUCTION = [2, 3, 6, 8, 11, 13, 14, 15, 32, 34, 37, 40, 41, 42, 43, 44, 45, 46, 47];
// Array enthält solche Ereignisse, die vor der Herstellung passiert sein müssen
const EVENTS_PRE_PRODUCTION = [4, 12, 25, 29, 30, 31, 35];
// Array enthält solche Ereignisse, die sich auf Objekte beziehen, die nicht hergestellt wurden
const EVENTS_NO_PRODUCTION = [21];
// Array enthält Ereignistypen, die auf Korrespondenzen hinweisen
const EVENTS_CORRESPONDENCE = [11, 13];

View File

@ -19,6 +19,7 @@ final class MDRequirementsSet {
// Object images need to be at least 500 px wide
const MIN_OBJECT_IMAGE_WIDTH = 540;
// Object images need to be at least 500 px wide
const MIN_OBJECT_IMAGE_HEIGHT = 540;