diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-11-29 09:35:27 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-11-29 09:35:27 +0100 |
commit | 3afcaef927391db23fe23c6c8c26b8960e8dae32 (patch) | |
tree | 143b9f6df9e8c795c8c6ed901bffdc7119f40df1 /src/Model/Event/BaseEvent.php | |
parent | c4ce3e884a6aa527bcc138771617215cf03265a4 (diff) |
intermediate commit
Diffstat (limited to 'src/Model/Event/BaseEvent.php')
-rw-r--r-- | src/Model/Event/BaseEvent.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Model/Event/BaseEvent.php b/src/Model/Event/BaseEvent.php new file mode 100644 index 0000000..d3cc3fb --- /dev/null +++ b/src/Model/Event/BaseEvent.php @@ -0,0 +1,14 @@ +<?php + +namespace App\Model\Event; + +abstract class BaseEvent +{ + public int $id; + public int $eventId; + + public \DateTime $createdAt; + public \DateTime $updatedAt; + + abstract function sqlInsert(): void; +} |