From: Roland Häder Date: Thu, 23 Jun 2022 07:57:42 +0000 (+0200) Subject: Ops, cannot return Thread? X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=35c78ce14c6fd33c7d604cad75cc15537ec2acb5;p=friendica.git Ops, cannot return Thread? --- 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; }