Completed
Push — 3.x ( 1c411a...e0aa21 )
by Vincent
03:13
created
src/Admin/Pool.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param string $title
88 88
      * @param string $logoTitle
89 89
      * @param array  $options
90
+     * @param PropertyAccessorInterface $propertyAccessor
90 91
      */
91 92
     public function __construct(
92 93
         ContainerInterface $container,
@@ -386,7 +387,7 @@  discard block
 block discarded – undo
386 387
     }
387 388
 
388 389
     /**
389
-     * @return array
390
+     * @return string[]
390 391
      */
391 392
     public function getAdminServiceIds()
392 393
     {
Please login to merge, or discard this patch.
src/Controller/CRUDController.php 1 patch
Doc Comments   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@  discard block
 block discarded – undo
66 66
      */
67 67
     private $templateRegistry;
68 68
 
69
+    /**
70
+     * @param ContainerInterface $container
71
+     */
69 72
     public function setContainer(?ContainerInterface $container = null)
70 73
     {
71 74
         $this->container = $container;
@@ -195,7 +198,7 @@  discard block
 block discarded – undo
195 198
     /**
196 199
      * Delete action.
197 200
      *
198
-     * @param int|string|null $id
201
+     * @param integer|null $id
199 202
      *
200 203
      * @throws NotFoundHttpException If the object does not exist
201 204
      * @throws AccessDeniedException If access is not granted
@@ -791,7 +794,7 @@  discard block
 block discarded – undo
791 794
     /**
792 795
      * View history revision of object.
793 796
      *
794
-     * @param int|string|null $id
797
+     * @param null|integer $id
795 798
      * @param string|null     $revision
796 799
      *
797 800
      * @throws AccessDeniedException If access is not granted
@@ -854,9 +857,9 @@  discard block
 block discarded – undo
854 857
     /**
855 858
      * Compare history revisions of object.
856 859
      *
857
-     * @param int|string|null $id
858
-     * @param int|string|null $base_revision
859
-     * @param int|string|null $compare_revision
860
+     * @param null|integer $id
861
+     * @param null|integer $base_revision
862
+     * @param null|integer $compare_revision
860 863
      *
861 864
      * @throws AccessDeniedException If access is not granted
862 865
      * @throws NotFoundHttpException If the object or revision does not exist or the audit reader is not available
@@ -1580,6 +1583,7 @@  discard block
 block discarded – undo
1580 1583
 
1581 1584
     /**
1582 1585
      * Sets the admin form theme to form view. Used for compatibility between Symfony versions.
1586
+     * @param string[] $theme
1583 1587
      */
1584 1588
     private function setFormTheme(FormView $formView, ?array $theme = null): void
1585 1589
     {
Please login to merge, or discard this patch.
src/Form/ChoiceList/ModelChoiceLoader.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@
 block discarded – undo
65 65
      * @param string|null $property
66 66
      * @param mixed|null  $query
67 67
      * @param array       $choices
68
+     * @param PropertyAccessorInterface $propertyAccessor
68 69
      */
69 70
     public function __construct(
70 71
         ModelManagerInterface $modelManager,
Please login to merge, or discard this patch.
src/Security/Handler/AclSecurityHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -184,6 +184,9 @@
 block discarded – undo
184 184
         return $acls;
185 185
     }
186 186
 
187
+    /**
188
+     * @param UserSecurityIdentity $securityIdentity
189
+     */
187 190
     public function addObjectOwner(AclInterface $acl, ?UserSecurityIdentity $securityIdentity = null)
188 191
     {
189 192
         if (false === $this->findClassAceIndexByUsername($acl, $securityIdentity->getUsername())) {
Please login to merge, or discard this patch.
src/Util/AdminObjectAclData.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -80,6 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * @param object $object
82 82
      * @param string $maskBuilderClass
83
+     * @param \Traversable $aclRoles
83 84
      */
84 85
     public function __construct(
85 86
         AdminInterface $admin,
Please login to merge, or discard this patch.
src/Menu/Matcher/Voter/AdminVoter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@  discard block
 block discarded – undo
38 38
      */
39 39
     private $request;
40 40
 
41
+    /**
42
+     * @param RequestStack $requestStack
43
+     */
41 44
     public function __construct(?RequestStack $requestStack = null)
42 45
     {
43 46
         $this->requestStack = $requestStack;
@@ -46,6 +49,7 @@  discard block
 block discarded – undo
46 49
     /**
47 50
      * @deprecated since sonata-project/admin-bundle 3.31. Pass a RequestStack to the constructor instead.
48 51
      *
52
+     * @param Request $request
49 53
      * @return $this
50 54
      */
51 55
     public function setRequest($request)
Please login to merge, or discard this patch.
src/Action/RetrieveAutocompleteItemsAction.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Sonata\AdminBundle\Admin\FieldDescriptionInterface;
18 18
 use Sonata\AdminBundle\Admin\Pool;
19 19
 use Sonata\AdminBundle\Filter\FilterInterface;
20
-use Symfony\Component\Form\Form;
21 20
 use Symfony\Component\HttpFoundation\JsonResponse;
22 21
 use Symfony\Component\HttpFoundation\Request;
23 22
 use Symfony\Component\HttpFoundation\Response;
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
@@ -586,6 +586,10 @@
 block discarded – undo
586 586
         $this->admin->setShowBuilder(new ShowBuilder());
587 587
     }
588 588
 
589
+    /**
590
+     * @param string $name
591
+     * @param string $label
592
+     */
589 593
     private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription
590 594
     {
591 595
         $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class);
Please login to merge, or discard this patch.
src/Twig/Extension/SonataAdminExtension.php 1 patch
Doc Comments   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     /**
185 185
      * render a list element from the FieldDescription.
186 186
      *
187
-     * @param object $object
187
+     * @param \stdClass $object
188 188
      * @param array  $params
189 189
      *
190 190
      * @return string
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     /**
273 273
      * render a view element.
274 274
      *
275
-     * @param object $object
275
+     * @param \stdClass $object
276 276
      *
277 277
      * @return string
278 278
      */
@@ -311,8 +311,8 @@  discard block
 block discarded – undo
311 311
     /**
312 312
      * render a compared view element.
313 313
      *
314
-     * @param mixed $baseObject
315
-     * @param mixed $compareObject
314
+     * @param \stdClass $baseObject
315
+     * @param \stdClass $compareObject
316 316
      *
317 317
      * @return string
318 318
      */
@@ -433,7 +433,8 @@  discard block
 block discarded – undo
433 433
     /**
434 434
      * Get the identifiers as a string that is safe to use in a url.
435 435
      *
436
-     * @param object $model
436
+     * @param \stdClass $model
437
+     * @param AdminInterface $admin
437 438
      *
438 439
      * @return string string representation of the id that is safe to use in a url
439 440
      */
@@ -455,7 +456,7 @@  discard block
 block discarded – undo
455 456
     }
456 457
 
457 458
     /**
458
-     * @return string|bool
459
+     * @return string|false
459 460
      */
460 461
     public function getXEditableType($type)
461 462
     {
Please login to merge, or discard this patch.