Completed
Pull Request — 3.x (#415)
by
unknown
01:48
created
tests/Entity/Message.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
 
20 20
 class Message extends BaseMessage
21 21
 {
22
+    /**
23
+     * @param integer $id
24
+     */
22 25
     public function setId($id): void
23 26
     {
24 27
         $this->id = $id;
Please login to merge, or discard this patch.
tests/Backend/AMQPBackendTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -308,6 +308,10 @@
 block discarded – undo
308 308
     }
309 309
 
310 310
     /**
311
+     * @param string $deadLetterExchange
312
+     * @param string $deadLetterRoutingKey
313
+     * @param integer $ttl
314
+     * @param integer $prefetchCount
311 315
      * @return AMQPBackend
312 316
      */
313 317
     protected function buildBackend($recover = false, $deadLetterExchange = null, $deadLetterRoutingKey = null, $ttl = null, $prefetchCount = null): AMQPBackend
Please login to merge, or discard this patch.
tests/Entity/MessageManagerTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -161,6 +161,7 @@
 block discarded – undo
161 161
     }
162 162
 
163 163
     /**
164
+     * @param \Closure $qbCallback
164 165
      * @return MessageManager
165 166
      */
166 167
     protected function getMessageManager($qbCallback): MessageManager
Please login to merge, or discard this patch.