Completed
Push — 3.x-dev-kit ( bdb053...4b42e1 )
by
unknown
01:32
created
src/Controller/Api/PostController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
      *
156 156
      * @throws NotFoundHttpException
157 157
      *
158
-     * @return Post
158
+     * @return FormInterface
159 159
      */
160 160
     public function postPostAction(Request $request)
161 161
     {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      *
186 186
      * @throws NotFoundHttpException
187 187
      *
188
-     * @return Post
188
+     * @return FormInterface
189 189
      */
190 190
     public function putPostAction($id, Request $request)
191 191
     {
Please login to merge, or discard this patch.
tests/Controller/Api/PostControllerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -356,7 +356,7 @@
 block discarded – undo
356 356
      * @param null $commentManager
357 357
      * @param null $mailer
358 358
      * @param null $formFactory
359
-     * @param null $formatterPool
359
+     * @param Pool $formatterPool
360 360
      *
361 361
      * @return PostController
362 362
      */
Please login to merge, or discard this patch.
src/Twig/Extension/NewsExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     /**
71 71
      * Returns a list of functions to add to the existing list.
72 72
      *
73
-     * @return array An array of functions
73
+     * @return TwigFunction[] An array of functions
74 74
      */
75 75
     public function getFunctions()
76 76
     {
Please login to merge, or discard this patch.
src/Document/PostManager.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -166,6 +166,10 @@
 block discarded – undo
166 166
         return $pager;
167 167
     }
168 168
 
169
+    /**
170
+     * @param string $date
171
+     * @param string $step
172
+     */
169 173
     public function getPublicationDateQueryParts($date, $step, $alias = 'p')
170 174
     {
171 175
         return [
Please login to merge, or discard this patch.
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)
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.
src/Model/CommentManagerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * Update the number of comment for a comment.
23
+     * @return void
23 24
      */
24 25
     public function updateCommentsCount(?PostInterface $post = null);
25 26
 }
Please login to merge, or discard this patch.