Completed
Pull Request — 3.x (#5418)
by Grégoire
09:13 queued 51s
created
tests/Admin/PoolTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -341,6 +341,9 @@
 block discarded – undo
341 341
         return $containerMock;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $serviceId
346
+     */
344 347
     private function getItemArray($serviceId): array
345 348
     {
346 349
         return [
Please login to merge, or discard this patch.
tests/Controller/CRUDControllerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -3986,6 +3986,9 @@
 block discarded – undo
3986 3986
             ]);
3987 3987
     }
3988 3988
 
3989
+    /**
3990
+     * @param string $domain
3991
+     */
3989 3992
     private function expectTranslate(
3990 3993
         string $id,
3991 3994
         array $parameters = [],
Please login to merge, or discard this patch.
tests/Datagrid/DatagridMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -263,6 +263,10 @@
 block discarded – undo
263 263
         ], array_keys($this->datagrid->getFilters()));
264 264
     }
265 265
 
266
+    /**
267
+     * @param string $name
268
+     * @param string $label
269
+     */
266 270
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
267 271
     {
268 272
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
tests/Datagrid/ListMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -257,6 +257,10 @@
 block discarded – undo
257 257
         ], true), print_r($this->fieldDescriptionCollection->getElements(), true));
258 258
     }
259 259
 
260
+    /**
261
+     * @param string $name
262
+     * @param string $label
263
+     */
260 264
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
261 265
     {
262 266
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
tests/Show/ShowMapperTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -442,6 +442,10 @@
 block discarded – undo
442 442
         $this->showMapper = new ShowMapper($this->showBuilder, $this->fieldDescriptionCollection, $this->admin);
443 443
     }
444 444
 
445
+    /**
446
+     * @param string $name
447
+     * @param string $label
448
+     */
445 449
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
446 450
     {
447 451
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.