Completed
Push — master ( 3f74db...61022b )
by Vincent
15s queued 11s
created
tests/Backend/AMQPBackendTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -307,6 +307,12 @@
 block discarded – undo
307 307
         $this->assertInstanceOf(AMQPMessageIterator::class, $iterator);
308 308
     }
309 309
 
310
+    /**
311
+     * @param string $deadLetterExchange
312
+     * @param string $deadLetterRoutingKey
313
+     * @param integer $ttl
314
+     * @param integer $prefetchCount
315
+     */
310 316
     protected function buildBackend($recover = false, $deadLetterExchange = null, $deadLetterRoutingKey = null, $ttl = null, $prefetchCount = null): AMQPBackend
311 317
     {
312 318
         $backend = new AMQPBackend(
Please login to merge, or discard this patch.
tests/Entity/MessageManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -157,6 +157,9 @@
 block discarded – undo
157 157
         return new MessageManagerMock(Message::class, $registry);
158 158
     }
159 159
 
160
+    /**
161
+     * @param \Closure $qbCallback
162
+     */
160 163
     protected function getMessageManager($qbCallback): MessageManager
161 164
     {
162 165
         $query = $this->getMockForAbstractClass(
Please login to merge, or discard this patch.