From 1b44e5f381bb203c3157396f0805e44ce336a843 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 23 Sep 2023 13:41:56 +0000 Subject: [PATCH] fix tests --- Models/NullGroupRelation.php | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Models/NullGroupRelation.php diff --git a/Models/NullGroupRelation.php b/Models/NullGroupRelation.php new file mode 100644 index 0000000..43a8aab --- /dev/null +++ b/Models/NullGroupRelation.php @@ -0,0 +1,47 @@ +id = $id; + parent::__construct(); + } + + /** + * {@inheritdoc} + */ + public function jsonSerialize() : mixed + { + return ['id' => $this->id]; + } +}