Completed
Push — master ( d5e913...b06dd7 )
by Michiel
12:25
created
Messaging/Tests/Form/FormModelProcessor/NewReplyDefaultProcessorTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace Miliooo\Messaging\Tests\Form\FormModelProcessor;
12 12
 
13 13
 use Miliooo\Messaging\Form\FormModelProcessor\NewReplyDefaultProcessor;
14
-use Miliooo\Messaging\TestHelpers\ParticipantTestHelper;
15 14
 
16 15
 /**
17 16
  * Test file for Miliooo\Messaging\Form\FormModelProcessor\NewReplyDefaultProcessor.
Please login to merge, or discard this patch.
Messaging/Tests/Model/MessageTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     /**
116 116
      * Helper function
117 117
      *
118
-     * @return MessageMeta
118
+     * @return \PHPUnit_Framework_MockObject_MockObject
119 119
      */
120 120
     protected function getNewMessageMeta()
121 121
     {
Please login to merge, or discard this patch.
Messaging/Tests/Model/ThreadTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
     /**
250 250
      * Helper function to get a new message instance from an abstract class
251 251
      *
252
-     * @return Message
252
+     * @return \PHPUnit_Framework_MockObject_MockObject
253 253
      */
254 254
     protected function getNewMessage()
255 255
     {
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     /**
260 260
      * Helper function to get a new thread meta from an abstract class
261 261
      *
262
-     * @return ThreadMeta
262
+     * @return \PHPUnit_Framework_MockObject_MockObject
263 263
      */
264 264
     protected function getNewThreadMeta()
265 265
     {
Please login to merge, or discard this patch.
Messaging/ValueObjects/ReadStatus.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
     /**
50 50
      * Checks if the given read status is a valid read status.
51 51
      *
52
-     * @param mixed $readStatus The read status we check
52
+     * @param integer $readStatus The read status we check
53 53
      *
54
-     * @return true if the read status is valid.
54
+     * @return boolean if the read status is valid.
55 55
      *
56 56
      * @throws \InvalidArgumentException If the read status is invalid.
57 57
      */
Please login to merge, or discard this patch.
Messaging/ValueObjects/ThreadStatus.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      *
56 56
      * @param integer $threadStatus One of the thread status constants
57 57
      *
58
-     * @return true if the read status is valid.
58
+     * @return boolean if the read status is valid.
59 59
      *
60 60
      * @throws \InvalidArgumentException If the read status is invalid.
61 61
      */
Please login to merge, or discard this patch.
MessagingBundle/Controller/ShowThreadController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
      * @param ParticipantInterface $loggedInUser
194 194
      * @param ThreadInterface      $thread
195 195
      *
196
-     * @return threadInterface
196
+     * @return ThreadInterface
197 197
      */
198 198
     protected function doThreadProcessing(ParticipantInterface $loggedInUser, ThreadInterface $thread)
199 199
     {
Please login to merge, or discard this patch.
MessagingBundle/Tests/DependencyInjection/MilioooMessagingExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
     /**
115 115
      * Asserts that a parameter key has a certain value
116 116
      *
117
-     * @param mixed  $value
117
+     * @param string  $value
118 118
      * @param string $key
119 119
      */
120 120
     private function assertParameter($value, $key)
Please login to merge, or discard this patch.