mirror of
https://github.com/FriendsOfSymfony/FOSMessageBundle.git
synced 2026-03-24 06:52:15 +01:00
29 lines
468 B
PHP
29 lines
468 B
PHP
<?php
|
|
|
|
namespace FOS\MessageBundle\FormModel;
|
|
|
|
use FOS\MessageBundle\Model\ThreadInterface;
|
|
|
|
class ReplyMessage extends AbstractMessage
|
|
{
|
|
/**
|
|
* The thread we reply to.
|
|
*
|
|
* @var ThreadInterface
|
|
*/
|
|
protected $thread;
|
|
|
|
/**
|
|
* @return ThreadInterface
|
|
*/
|
|
public function getThread()
|
|
{
|
|
return $this->thread;
|
|
}
|
|
|
|
public function setThread(ThreadInterface $thread)
|
|
{
|
|
$this->thread = $thread;
|
|
}
|
|
}
|