Completed
Pull Request — 3.x (#4331)
by Yann
04:36
created
Tests/Admin/Extension/LockExtensionTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -195,6 +195,10 @@
 block discarded – undo
195 195
         return new FormMapper($contractor->reveal(), $formBuilder, $this->admin->reveal());
196 196
     }
197 197
 
198
+    /**
199
+     * @param string $uniqid
200
+     * @param Request $request
201
+     */
198 202
     private function configureAdmin($uniqid = null, $request = null, $modelManager = null)
199 203
     {
200 204
         $this->admin->getUniqid()->willReturn($uniqid);
Please login to merge, or discard this patch.
Tests/Controller/CRUDControllerTest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -3702,6 +3702,9 @@  discard block
 block discarded – undo
3702 3702
         );
3703 3703
     }
3704 3704
 
3705
+    /**
3706
+     * @param string $method
3707
+     */
3705 3708
     private function assertLoggerLogsModelManagerException($subject, $method)
3706 3709
     {
3707 3710
         $exception = new ModelManagerException(
@@ -3724,6 +3727,10 @@  discard block
 block discarded – undo
3724 3727
             ));
3725 3728
     }
3726 3729
 
3730
+    /**
3731
+     * @param string $id
3732
+     * @param string $domain
3733
+     */
3727 3734
     private function expectTranslate($id, array $parameters = array(), $domain = null, $locale = null)
3728 3735
     {
3729 3736
         $this->translator->expects($this->once())
Please login to merge, or discard this patch.
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   +4 added lines patch added patch discarded remove patch
@@ -245,6 +245,10 @@
 block discarded – undo
245 245
         ), true), print_r($this->fieldDescriptionCollection->getElements(), true));
246 246
     }
247 247
 
248
+    /**
249
+     * @param string $name
250
+     * @param string $label
251
+     */
248 252
     private function getFieldDescriptionMock($name = null, $label = null)
249 253
     {
250 254
         $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 = array())
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/Helpers/PHPUnit_Framework_TestCase.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * {@inheritdoc}
25
+     * @param string $exception
25 26
      */
26 27
     public function expectException($exception, $message = '', $code = null)
27 28
     {
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.
Twig/Extension/SonataAdminExtension.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     /**
124 124
      * render a list element from the FieldDescription.
125 125
      *
126
-     * @param mixed                     $object
126
+     * @param \stdClass                     $object
127 127
      * @param FieldDescriptionInterface $fieldDescription
128 128
      * @param array                     $params
129 129
      *
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
      * render a view element.
227 227
      *
228 228
      * @param FieldDescriptionInterface $fieldDescription
229
-     * @param mixed                     $object
229
+     * @param \stdClass                     $object
230 230
      *
231 231
      * @return string
232 232
      */
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Get the identifiers as a string that is save to use in an url.
367 367
      *
368
-     * @param object         $model
368
+     * @param \stdClass         $model
369 369
      * @param AdminInterface $admin
370 370
      *
371 371
      * @return string string representation of the id that is save to use in an url
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     /**
391 391
      * @param $type
392 392
      *
393
-     * @return string|bool
393
+     * @return string|false
394 394
      */
395 395
     public function getXEditableType($type)
396 396
     {
@@ -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
     protected function getTemplate(
453 453
         FieldDescriptionInterface $fieldDescription,
Please login to merge, or discard this patch.