1 | <?php |
||
20 | class ReplyMessage extends AbstractNewMessage implements ReplyMessageInterface |
||
21 | { |
||
22 | /** |
||
23 | * The thread we reply to |
||
24 | * |
||
25 | * @var ThreadInterface |
||
26 | */ |
||
27 | protected $thread; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function getThread() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function setThread(ThreadInterface $thread) |
||
44 | } |
||
45 |