From fa9096c0ab521aae45cab6c48a54290d14a221b9 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Wed, 29 Nov 2023 11:03:15 +0100 Subject: event tables --- src/Model/Event.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/Model/Event.php') diff --git a/src/Model/Event.php b/src/Model/Event.php index b4c131e..de6c82e 100644 --- a/src/Model/Event.php +++ b/src/Model/Event.php @@ -8,15 +8,20 @@ class Event { public int $id; - public string $type; + public ?string $type; public \DateTime $time; - public string $payload; + public ?string $payload; public int $villageId; public \DateTime $createdAt; public \DateTime $updatedAt; + public function __construct(?\DateTime $time = null, int $villageId = 0) + { + $this->time = $time ?? new \DateTime(); + $this->villageId = $villageId; + } /* OOP */ -- cgit v1.2.3