We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e14676 commit f8c4d6cCopy full SHA for f8c4d6c
webapp/src/DataTransferObject/Shadowing/EventType.php
@@ -29,7 +29,12 @@ public static function fromString(string $value): EventType
29
return EventType::CONTESTS;
30
}
31
32
- return EventType::from($value);
+ // When encountering an error for an unknown event
33
+ // Consider if we need to verify this as shadow or
34
+ // ignore it by adding the case in:
35
+ // webapp/src/DataTransferObject/Shadowing/EventType.php
36
+ // webapp/src/Service/ExternalContestSourceService.php
37
+ return EventType::from($value);
38
39
40
/**
0 commit comments