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
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}