summaryrefslogtreecommitdiff
path: root/src/Model/Event/BaseEvent.php
blob: d3cc3fb7b65c5395392ac043c143db4c26ba97d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}