1 | <?php |
||
24 | class ThreadBuilderModel extends AbstractMessageBuilderModel |
||
25 | { |
||
26 | /** |
||
27 | * @var NewThreadInterface |
||
28 | */ |
||
29 | protected $newThreadModel; |
||
30 | |||
31 | /** |
||
32 | * Constructor. |
||
33 | * |
||
34 | * @param NewThreadInterface $newThreadModel |
||
35 | */ |
||
36 | public function __construct(NewThreadInterface $newThreadModel) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | protected function processExtra() |
||
53 | |||
54 | /** |
||
55 | * Gets the recipients of the new message |
||
56 | * |
||
57 | * @return ParticipantInterface[] Array with participants |
||
58 | */ |
||
59 | public function getRecipients() |
||
63 | } |
||
64 |