@@ -195,6 +195,10 @@ |
||
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); |
@@ -3759,6 +3759,9 @@ discard block |
||
3759 | 3759 | ]; |
3760 | 3760 | } |
3761 | 3761 | |
3762 | + /** |
|
3763 | + * @param string $method |
|
3764 | + */ |
|
3762 | 3765 | private function assertLoggerLogsModelManagerException($subject, $method) |
3763 | 3766 | { |
3764 | 3767 | $exception = new ModelManagerException( |
@@ -3781,6 +3784,10 @@ discard block |
||
3781 | 3784 | ]); |
3782 | 3785 | } |
3783 | 3786 | |
3787 | + /** |
|
3788 | + * @param string $id |
|
3789 | + * @param string $domain |
|
3790 | + */ |
|
3784 | 3791 | private function expectTranslate($id, array $parameters = [], $domain = null, $locale = null) |
3785 | 3792 | { |
3786 | 3793 | $this->translator->expects($this->once()) |
@@ -257,6 +257,12 @@ |
||
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'); |
@@ -251,6 +251,12 @@ |
||
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'); |
@@ -640,6 +640,10 @@ |
||
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); |
@@ -8,6 +8,9 @@ |
||
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; |
@@ -450,6 +450,10 @@ |
||
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'); |
@@ -102,7 +102,7 @@ |
||
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 | { |