Completed
Push — master ( 3a65e8...9f4bbe )
by Grégoire
16s
created
tests/Datagrid/DatagridMapperTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -257,6 +257,12 @@
 block discarded – undo
257 257
         ], array_keys($this->datagrid->getFilters()));
258 258
     }
259 259
 
260
+    /**
261
+     * @param string $name
262
+     * @param string $label
263
+     *
264
+     * @return string
265
+     */
260 266
     private function getFieldDescriptionMock($name = null, $label = null)
261 267
     {
262 268
         $fieldDescription = $this->getMockForAbstractClass('Sonata\AdminBundle\Admin\BaseFieldDescription');
Please login to merge, or discard this patch.
tests/Datagrid/ListMapperTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -251,6 +251,12 @@
 block discarded – undo
251 251
         ], true), print_r($this->fieldDescriptionCollection->getElements(), true));
252 252
     }
253 253
 
254
+    /**
255
+     * @param string $name
256
+     * @param string $label
257
+     *
258
+     * @return string
259
+     */
254 260
     private function getFieldDescriptionMock($name = null, $label = null)
255 261
     {
256 262
         $fieldDescription = $this->getMockForAbstractClass('Sonata\AdminBundle\Admin\BaseFieldDescription');
Please login to merge, or discard this patch.
tests/Datagrid/PagerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -640,6 +640,10 @@
 block discarded – undo
640 640
         $this->assertSame(null, $this->pager->getQuery());
641 641
     }
642 642
 
643
+    /**
644
+     * @param Pager $obj
645
+     * @param string $name
646
+     */
643 647
     protected function callMethod($obj, $name, array $args = [])
644 648
     {
645 649
         $class = new \ReflectionClass($obj);
Please login to merge, or discard this patch.
tests/Fixtures/Admin/PostAdmin.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 {
9 9
     protected $metadataClass = null;
10 10
 
11
+    /**
12
+     * @param string $associationMapping
13
+     */
11 14
     public function setParentAssociationMapping($associationMapping)
12 15
     {
13 16
         $this->parentAssociationMapping = $associationMapping;
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
@@ -450,6 +450,10 @@
 block discarded – undo
450 450
         $this->showMapper = new ShowMapper($this->showBuilder, $this->fieldDescriptionCollection, $this->admin);
451 451
     }
452 452
 
453
+    /**
454
+     * @param string $name
455
+     * @param string $label
456
+     */
453 457
     private function getFieldDescriptionMock($name = null, $label = null)
454 458
     {
455 459
         $fieldDescription = $this->getMockForAbstractClass('Sonata\AdminBundle\Admin\BaseFieldDescription');
Please login to merge, or discard this patch.
src/Form/ChoiceList/ModelChoiceList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * @param string                $class
103 103
      * @param string|null           $property
104 104
      * @param QueryBuilder|null     $query
105
-     * @param array                 $choices
105
+     * @param integer[]                 $choices
106 106
      */
107 107
     public function __construct(ModelManagerInterface $modelManager, $class, $property = null, $query = null, $choices = [], PropertyAccessorInterface $propertyAccessor = null)
108 108
     {
Please login to merge, or discard this patch.
src/Twig/Extension/SonataAdminExtension.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     /**
123 123
      * render a list element from the FieldDescription.
124 124
      *
125
-     * @param mixed                     $object
125
+     * @param \stdClass                     $object
126 126
      * @param FieldDescriptionInterface $fieldDescription
127 127
      * @param array                     $params
128 128
      *
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      * render a view element.
153 153
      *
154 154
      * @param FieldDescriptionInterface $fieldDescription
155
-     * @param mixed                     $object
155
+     * @param \stdClass                     $object
156 156
      *
157 157
      * @return string
158 158
      */
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
     /**
292 292
      * Get the identifiers as a string that is safe to use in a url.
293 293
      *
294
-     * @param object         $model
294
+     * @param \stdClass         $model
295 295
      * @param AdminInterface $admin
296 296
      *
297 297
      * @return string string representation of the id that is safe to use in a url
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
     /**
317 317
      * @param $type
318 318
      *
319
-     * @return string|bool
319
+     * @return string|false
320 320
      */
321 321
     public function getXEditableType($type)
322 322
     {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
      * @param FieldDescriptionInterface $fieldDescription
448 448
      * @param string                    $defaultTemplate
449 449
      *
450
-     * @return \Twig_TemplateInterface
450
+     * @return \Twig_Template
451 451
      */
452 452
     private function getTemplate(
453 453
         FieldDescriptionInterface $fieldDescription,
Please login to merge, or discard this patch.
tests/Twig/Extension/SonataAdminExtensionTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -2209,6 +2209,9 @@
 block discarded – undo
2209 2209
         return htmlspecialchars(http_build_query($url, '', '&'));
2210 2210
     }
2211 2211
 
2212
+    /**
2213
+     * @param string $privateMethod
2214
+     */
2212 2215
     private function getMethodAsPublic($privateMethod)
2213 2216
     {
2214 2217
         $reflection = new \ReflectionMethod('Sonata\AdminBundle\Twig\Extension\SonataAdminExtension', $privateMethod);
Please login to merge, or discard this patch.
src/Controller/CRUDController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Delete action.
175 175
      *
176
-     * @param int|string|null $id
176
+     * @param integer|null $id
177 177
      *
178 178
      * @return Response|RedirectResponse
179 179
      *
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
     /**
701 701
      * View history revision of object.
702 702
      *
703
-     * @param int|string|null $id
703
+     * @param null|integer $id
704 704
      * @param string|null     $revision
705 705
      *
706 706
      * @return Response
@@ -760,9 +760,9 @@  discard block
 block discarded – undo
760 760
     /**
761 761
      * Compare history revisions of object.
762 762
      *
763
-     * @param int|string|null $id
764
-     * @param int|string|null $base_revision
765
-     * @param int|string|null $compare_revision
763
+     * @param null|integer $id
764
+     * @param null|integer $base_revision
765
+     * @param null|integer $compare_revision
766 766
      *
767 767
      * @return Response
768 768
      *
Please login to merge, or discard this patch.