@@ -212,6 +212,10 @@ |
||
212 | 212 | return new FormMapper($contractor->reveal(), $formBuilder, $this->admin->reveal()); |
213 | 213 | } |
214 | 214 | |
215 | + /** |
|
216 | + * @param string $uniqid |
|
217 | + * @param Request $request |
|
218 | + */ |
|
215 | 219 | private function configureAdmin( |
216 | 220 | ?string $uniqid = null, |
217 | 221 | ?Request $request = null, |
@@ -3986,6 +3986,9 @@ |
||
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 = [], |
@@ -47,6 +47,8 @@ |
||
47 | 47 | |
48 | 48 | /** |
49 | 49 | * @param array<string, mixed> $options |
50 | + * @param string $description |
|
51 | + * @param string $domain |
|
50 | 52 | */ |
51 | 53 | public function __construct( |
52 | 54 | string $title, |
@@ -441,6 +441,9 @@ |
||
441 | 441 | return $object->{$fieldName}; |
442 | 442 | } |
443 | 443 | |
444 | + /** |
|
445 | + * @param string $fieldName |
|
446 | + */ |
|
444 | 447 | private function cacheFieldGetter($object, ?string $fieldName, string $method, ?string $getter = null): void |
445 | 448 | { |
446 | 449 | $getterKey = $this->getFieldGetterKey($object, $fieldName); |
@@ -40,6 +40,9 @@ |
||
40 | 40 | */ |
41 | 41 | private $validator; |
42 | 42 | |
43 | + /** |
|
44 | + * @param ValidatorInterface $validator |
|
45 | + */ |
|
43 | 46 | public function __construct(Environment $twig, Pool $pool, $validator) |
44 | 47 | { |
45 | 48 | // NEXT_MAJOR: Move ValidatorInterface check to method signature |
@@ -68,6 +68,9 @@ |
||
68 | 68 | return $extensions; |
69 | 69 | } |
70 | 70 | |
71 | + /** |
|
72 | + * @return string |
|
73 | + */ |
|
71 | 74 | protected function getChoiceClass() |
72 | 75 | { |
73 | 76 | return CollectionType::class; |
@@ -292,6 +292,10 @@ |
||
292 | 292 | $this->assertTrue($this->datagridMapper->has('baz')); |
293 | 293 | } |
294 | 294 | |
295 | + /** |
|
296 | + * @param string $name |
|
297 | + * @param string $label |
|
298 | + */ |
|
295 | 299 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
296 | 300 | { |
297 | 301 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |
@@ -286,6 +286,10 @@ |
||
286 | 286 | $this->assertTrue($this->listMapper->has('baz')); |
287 | 287 | } |
288 | 288 | |
289 | + /** |
|
290 | + * @param string $name |
|
291 | + * @param string $label |
|
292 | + */ |
|
289 | 293 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
290 | 294 | { |
291 | 295 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |
@@ -501,6 +501,10 @@ |
||
501 | 501 | $this->admin->setLabelTranslatorStrategy(new NoopLabelTranslatorStrategy()); |
502 | 502 | } |
503 | 503 | |
504 | + /** |
|
505 | + * @param string $name |
|
506 | + * @param string $label |
|
507 | + */ |
|
504 | 508 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
505 | 509 | { |
506 | 510 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |