From 2690c6327596649c14553263ce736d021a54f1ed Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 22 Mar 2022 17:34:58 +0100 Subject: [PATCH] fixed php 8.1 type bugs --- Models/KanbanBoard.php | 2 +- Models/KanbanCard.php | 2 +- Models/KanbanCardComment.php | 2 +- Models/KanbanColumn.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Models/KanbanBoard.php b/Models/KanbanBoard.php index 22168a3..ddc9c86 100755 --- a/Models/KanbanBoard.php +++ b/Models/KanbanBoard.php @@ -268,7 +268,7 @@ class KanbanBoard implements \JsonSerializable /** * {@inheritdoc} */ - public function jsonSerialize() + public function jsonSerialize() : mixed { return $this->toArray(); } diff --git a/Models/KanbanCard.php b/Models/KanbanCard.php index c1e7ac5..302df3e 100755 --- a/Models/KanbanCard.php +++ b/Models/KanbanCard.php @@ -383,7 +383,7 @@ class KanbanCard implements \JsonSerializable /** * {@inheritdoc} */ - public function jsonSerialize() + public function jsonSerialize() : mixed { return $this->toArray(); } diff --git a/Models/KanbanCardComment.php b/Models/KanbanCardComment.php index c7566c6..70c1b86 100755 --- a/Models/KanbanCardComment.php +++ b/Models/KanbanCardComment.php @@ -151,7 +151,7 @@ class KanbanCardComment implements \JsonSerializable /** * {@inheritdoc} */ - public function jsonSerialize() + public function jsonSerialize() : mixed { return $this->toArray(); } diff --git a/Models/KanbanColumn.php b/Models/KanbanColumn.php index c7395e2..4e9edbd 100755 --- a/Models/KanbanColumn.php +++ b/Models/KanbanColumn.php @@ -139,7 +139,7 @@ class KanbanColumn implements \JsonSerializable /** * {@inheritdoc} */ - public function jsonSerialize() + public function jsonSerialize() : mixed { return $this->toArray(); }