From 0e479606d1f1d712cc12e5d581680e6aaaa0b705 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 15 Feb 2020 21:40:03 +0100 Subject: [PATCH] fix phpstan --- Models/Comment.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Models/Comment.php b/Models/Comment.php index d1c8237..901deea 100644 --- a/Models/Comment.php +++ b/Models/Comment.php @@ -237,4 +237,12 @@ class Comment { return $this->createdAt; } + + /** + * {@inheritdoc} + */ + public function jsonSerialize() : array + { + return []; + } }