feat: Remove unused event serialization

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-08-05 22:21:04 -04:00
parent 2012d67be7
commit ba4deccea9
2 changed files with 0 additions and 44 deletions
-14
View File
@@ -136,18 +136,4 @@ class Event
$this->identityId = $identityId;
return $this;
}
/**
* Convert event to array for serialization/logging
*/
public function toArray(): array
{
return [
'name' => $this->name,
'data' => $this->data,
'timestamp' => $this->timestamp,
'tenantId' => $this->tenantId,
'identityId' => $this->identityId,
];
}
}