@@ -263,6 +263,10 @@ |
||
263 | 263 | ], array_keys($this->datagrid->getFilters())); |
264 | 264 | } |
265 | 265 | |
266 | + /** |
|
267 | + * @param string $name |
|
268 | + * @param string $label |
|
269 | + */ |
|
266 | 270 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
267 | 271 | { |
268 | 272 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |
@@ -257,6 +257,10 @@ |
||
257 | 257 | ], true), print_r($this->fieldDescriptionCollection->getElements(), true)); |
258 | 258 | } |
259 | 259 | |
260 | + /** |
|
261 | + * @param string $name |
|
262 | + * @param string $label |
|
263 | + */ |
|
260 | 264 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
261 | 265 | { |
262 | 266 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |
@@ -442,6 +442,10 @@ |
||
442 | 442 | $this->showMapper = new ShowMapper($this->showBuilder, $this->fieldDescriptionCollection, $this->admin); |
443 | 443 | } |
444 | 444 | |
445 | + /** |
|
446 | + * @param string $name |
|
447 | + * @param string $label |
|
448 | + */ |
|
445 | 449 | private function getFieldDescriptionMock(?string $name = null, ?string $label = null): BaseFieldDescription |
446 | 450 | { |
447 | 451 | $fieldDescription = $this->getMockForAbstractClass(BaseFieldDescription::class); |
@@ -42,6 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param ContainerInterface|Pool $adminPool |
45 | + * @param string $mosaicBackground |
|
45 | 46 | */ |
46 | 47 | public function __construct($adminPool, ?string $mosaicBackground = null) |
47 | 48 | { |
@@ -78,7 +79,7 @@ discard block |
||
78 | 79 | /** |
79 | 80 | * @param string $code |
80 | 81 | * @param string $action |
81 | - * @param array $parameters |
|
82 | + * @param string[] $parameters |
|
82 | 83 | * @param int $absolute |
83 | 84 | * |
84 | 85 | * @return string |
@@ -93,8 +94,8 @@ discard block |
||
93 | 94 | /** |
94 | 95 | * @param string $code |
95 | 96 | * @param string $action |
96 | - * @param mixed $object |
|
97 | - * @param array $parameters |
|
97 | + * @param string $object |
|
98 | + * @param string[] $parameters |
|
98 | 99 | * @param int $absolute |
99 | 100 | * |
100 | 101 | * @return string |
@@ -111,6 +112,10 @@ discard block |
||
111 | 112 | return $this->mosaicBackground; |
112 | 113 | } |
113 | 114 | |
115 | + /** |
|
116 | + * @param string $code |
|
117 | + * @param string $action |
|
118 | + */ |
|
114 | 119 | private function getCodeAction($code, $action): array |
115 | 120 | { |
116 | 121 | if ($pipe = strpos($code, '|')) { |
@@ -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, |
@@ -298,6 +298,9 @@ |
||
298 | 298 | $formConfig->getAttribute('target_admin_access_action')->willReturn('list'); |
299 | 299 | } |
300 | 300 | |
301 | + /** |
|
302 | + * @param string $field |
|
303 | + */ |
|
301 | 304 | private function configureFormConfigComplexPropertyArray($field): void |
302 | 305 | { |
303 | 306 | $form = $this->prophesize(Form::class); |
@@ -2486,6 +2486,9 @@ |
||
2486 | 2486 | return htmlspecialchars(http_build_query($url, '', '&', PHP_QUERY_RFC3986)); |
2487 | 2487 | } |
2488 | 2488 | |
2489 | + /** |
|
2490 | + * @param string $privateMethod |
|
2491 | + */ |
|
2489 | 2492 | private function getMethodAsPublic($privateMethod): \ReflectionMethod |
2490 | 2493 | { |
2491 | 2494 | $reflection = new \ReflectionMethod('Sonata\AdminBundle\Twig\Extension\SonataAdminExtension', $privateMethod); |
@@ -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 |