summaryrefslogtreecommitdiff
path: root/src/Events/Event.php
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2026-03-05 14:57:28 +0100
committerDaniel Weipert <git@mail.dweipert.de>2026-03-05 14:57:28 +0100
commitbd11271621bd3759cfd194ed0119c0dc28155fd0 (patch)
tree319b4790d4e2b05513abf023732ed6fb0717f603 /src/Events/Event.php
parent2386148b8f048ba40d9f26cc97898bdcdc778ea2 (diff)
updateHEADmain
Diffstat (limited to 'src/Events/Event.php')
-rw-r--r--src/Events/Event.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Events/Event.php b/src/Events/Event.php
deleted file mode 100644
index 7dbf242..0000000
--- a/src/Events/Event.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-namespace App\Events;
-
-use App\Types\EventType;
-
-abstract class Event
-{
- public function __construct(
- protected EventType $type,
- )
- {}
-
- abstract public function fromJson(string $json): self;
-
- /**
- * @return array<string, mixed>
- */
- abstract public function toJsonEncodeable(): array;
-}