Ops, cannot return Thread?

This commit is contained in:
Roland Häder 2022-06-23 09:57:42 +02:00
parent c2e26b4f49
commit 35c78ce14c
Signed by: roland
GPG key ID: C82EDE5DDFA0BA77

View file

@ -743,7 +743,7 @@ class Post
/** /**
* Set conversation thread * Set conversation thread
* *
* @param Thread $thread * @param Thread $thread Thread to set or NULL
* @return void * @return void
*/ */
public function setThread(Thread $thread = null) public function setThread(Thread $thread = null)
@ -761,7 +761,7 @@ class Post
* *
* @return Thread * @return Thread
*/ */
public function getThread(): Thread public function getThread()
{ {
return $this->thread; return $this->thread;
} }