Completed
Push — master ( b06dd7...b2af16 )
by Michiel
13:10
created
Messaging/Builder/Message/AbstractMessageBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
Messaging/Builder/Model/AbstractMessageBuilderModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Messaging/Form/FormFactory/NewThreadMessageFormFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Messaging/Form/FormModel/NewMessageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Messaging/Form/FormModel/NewThreadInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Messaging/Form/FormModel/ReplyMessageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Messaging/Form/FormModelProcessor/NewReplyFormProcessorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Messaging/Form/FormModelProcessor/NewThreadFormProcessorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Messaging/Helpers/FlashMessages/FlashMessageProviderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.