1 | <?php |
||
9 | final class EventType extends Category |
||
10 | { |
||
11 | public const DOMAIN = 'eventtype'; |
||
12 | |||
13 | public function __construct(string $id, string $label) |
||
17 | |||
18 | public static function deserialize(array $data): EventType |
||
22 | |||
23 | public static function fromJSONLDEvent(string $eventString): ?EventType |
||
33 | |||
34 | public static function fromUdb3ModelCategory(Udb3ModelCategory $category): EventType |
||
47 | } |
||
48 |