Completed
Push — dependabot/npm_and_yarn/Bundle... ( 6e191e )
by
unknown
03:57
created
Bundle/WidgetBundle/Builder/WidgetFormBuilder.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -128,9 +128,10 @@  discard block
 block discarded – undo
128 128
      *
129 129
      * @param string           $slot
130 130
      * @param View             $view
131
-     * @param Widget           $widget
131
+     * @param Widget           $widgets
132 132
      * @param BusinessEntity[] $classes
133 133
      * @param int              $position
134
+     * @param string $quantum
134 135
      *
135 136
      * @throws \Exception
136 137
      *
@@ -152,10 +153,9 @@  discard block
 block discarded – undo
152 153
     /**
153 154
      * Generates style forms for each quantum.
154 155
      *
155
-     * @param $viewReference
156
+     * @param string|null $viewReference
156 157
      * @param ArrayCollection|Widget[] $widgets
157 158
      * @param Widget                   $activeWidget
158
-     * @param null                     $quantum
159 159
      *
160 160
      * @return Form[]
161 161
      */
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
      *
313 313
      * @param Widget $widget
314 314
      * @param $viewReference
315
-     * @param $quantum
315
+     * @param string|null $quantum
316 316
      *
317 317
      * @throws \Throwable
318 318
      *
@@ -377,6 +377,7 @@  discard block
 block discarded – undo
377 377
      * @param string $namespace        the namespace
378 378
      * @param string $formMode         the form mode
379 379
      * @param int    $position
380
+     * @param string $slotId
380 381
      *
381 382
      * @throws \Exception
382 383
      *
Please login to merge, or discard this patch.
Bundle/WidgetMapBundle/Entity/WidgetMap.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
     }
321 321
 
322 322
     /**
323
-     * @return WidgetMap[]
323
+     * @return Collection
324 324
      */
325 325
     public function getChildren()
326 326
     {
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     }
353 353
 
354 354
     /**
355
-     * @return WidgetMap|null
355
+     * @return \self|null
356 356
      */
357 357
     public function getParent()
358 358
     {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
     }
361 361
 
362 362
     /**
363
-     * @param null|WidgetMap $parent
363
+     * @param null|\self $parent
364 364
      */
365 365
     public function setParent(self $parent = null)
366 366
     {
Please login to merge, or discard this patch.
Bundle/WidgetMapBundle/Manager/WidgetMapManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,8 +200,8 @@
 block discarded – undo
200 200
      * @param View $view
201 201
      * @param $beforeChild
202 202
      * @param $afterChild
203
-     * @param $originalParent
204
-     * @param $originalPosition
203
+     * @param \self|null $originalParent
204
+     * @param string $originalPosition
205 205
      */
206 206
     public function moveChildren(View $view, $beforeChild, $afterChild, $originalParent, $originalPosition)
207 207
     {
Please login to merge, or discard this patch.