Completed
Push — master ( e8c97b...6d1563 )
by Grégoire
14s queued 11s
created
tests/Entity/CommentManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -81,6 +81,9 @@
 block discarded – undo
81 81
             ], 1);
82 82
     }
83 83
 
84
+    /**
85
+     * @param \Closure $qbCallback
86
+     */
84 87
     protected function getCommentManager($qbCallback)
85 88
     {
86 89
         $em = $this->createEntityManagerMock($qbCallback, []);
Please login to merge, or discard this patch.
tests/Entity/PostManagerTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@  discard block
 block discarded – undo
67 67
         ;
68 68
     }
69 69
 
70
+    /**
71
+     * @param integer $flag
72
+     */
70 73
     public function assertPostEnabled($qb, $flag): void
71 74
     {
72 75
         $qb->expects($this->once())->method('andWhere')->with($this->equalTo('p.enabled = :enabled'));
@@ -254,6 +257,9 @@  discard block
 block discarded – undo
254 257
         $this->assertSame('2010-03-10', $result['params']['endDate']->format('Y-m-d'));
255 258
     }
256 259
 
260
+    /**
261
+     * @param \Closure $qbCallback
262
+     */
257 263
     protected function getPostManager($qbCallback)
258 264
     {
259 265
         $em = $this->createEntityManagerMock($qbCallback, []);
Please login to merge, or discard this patch.