diff --git a/Models/NullAudit.php b/Models/NullAudit.php index aaee01a..e953524 100755 --- a/Models/NullAudit.php +++ b/Models/NullAudit.php @@ -36,4 +36,12 @@ final class NullAudit extends Audit $this->id = $id; parent::__construct(); } + + /** + * {@inheritdoc} + */ + public function jsonSerialize() : mixed + { + return ['id' => $this->id]; + } }