@@ -215,7 +215,7 @@ |
||
215 | 215 | * If not it throws an invalidArgumentException |
216 | 216 | * |
217 | 217 | * @param string $key |
218 | - * @param object $object |
|
218 | + * @param BuilderInterface $object |
|
219 | 219 | * |
220 | 220 | * @return string The callable setter method |
221 | 221 | * |
@@ -143,7 +143,7 @@ |
||
143 | 143 | * |
144 | 144 | * @param string $participant One of the class constants SENDER ALL RECIPIENTS |
145 | 145 | * @param string $key The name of your message meta class attribute you want to add data for. |
146 | - * @param mixed $value The value for your attribute |
|
146 | + * @param ReadStatus $value The value for your attribute |
|
147 | 147 | */ |
148 | 148 | public function addMessageMeta($participant, $key, $value) |
149 | 149 | { |
@@ -81,7 +81,7 @@ |
||
81 | 81 | /** |
82 | 82 | * Maybe sets a recipient |
83 | 83 | * @param string $recipient |
84 | - * @param $formModel |
|
84 | + * @param NewThreadInterface $formModel |
|
85 | 85 | */ |
86 | 86 | protected function maybeSetRecipient($recipient, $formModel) |
87 | 87 | { |
@@ -34,6 +34,7 @@ discard block |
||
34 | 34 | * If we create a new thread this is also the creator of the thread |
35 | 35 | * |
36 | 36 | * @param ParticipantInterface $sender |
37 | + * @return void |
|
37 | 38 | */ |
38 | 39 | public function setSender(ParticipantInterface $sender); |
39 | 40 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | * If we create a new thread this is also the creation time of the thread |
44 | 45 | * |
45 | 46 | * @param \DateTime $createdAt |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function setCreatedAt(\DateTime $createdAt); |
48 | 50 | |
@@ -57,6 +59,7 @@ discard block |
||
57 | 59 | * Sets the body of the message |
58 | 60 | * |
59 | 61 | * @param string $body |
62 | + * @return void |
|
60 | 63 | */ |
61 | 64 | public function setBody($body); |
62 | 65 |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Sets the subject |
24 | 24 | * |
25 | 25 | * @param string $subject |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function setSubject($subject); |
28 | 29 |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Sets the thread where we add the reply |
24 | 24 | * |
25 | 25 | * @param ThreadInterface $thread the thread where we add the reply |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function setThread(ThreadInterface $thread); |
28 | 29 |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Processes a Replymessage form model instance |
24 | 24 | * |
25 | 25 | * @param ReplyMessageInterface $formModel The form model we process |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function process(ReplyMessageInterface $formModel); |
28 | 29 | } |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Processes a NewThreadFormModel instance |
24 | 24 | * |
25 | 25 | * @param NewThreadInterface $formModel The form model we process |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function process(NewThreadInterface $formModel); |
28 | 29 | } |
@@ -26,6 +26,7 @@ |
||
26 | 26 | * @param string $type One of the class constants type |
27 | 27 | * @param string $translationKey A translation string |
28 | 28 | * @param array $parameters Optional parameters for the translation of the string. |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function addFlash($type, $translationKey, $parameters = []); |
31 | 32 | } |