From 35c78ce14c6fd33c7d604cad75cc15537ec2acb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Thu, 23 Jun 2022 09:57:42 +0200 Subject: [PATCH] Ops, cannot return Thread? --- src/Object/Post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Object/Post.php b/src/Object/Post.php index 63ac91904c..90b74d4dd1 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -743,7 +743,7 @@ class Post /** * Set conversation thread * - * @param Thread $thread + * @param Thread $thread Thread to set or NULL * @return void */ public function setThread(Thread $thread = null) @@ -761,7 +761,7 @@ class Post * * @return Thread */ - public function getThread(): Thread + public function getThread() { return $this->thread; }