@@ -59,6 +59,9 @@ discard block |
||
59 | 59 | */ |
60 | 60 | private $templateRegistry; |
61 | 61 | |
62 | + /** |
|
63 | + * @param ContainerInterface $container |
|
64 | + */ |
|
62 | 65 | public function setContainer(?ContainerInterface $container = null): void |
63 | 66 | { |
64 | 67 | $this->container = $container; |
@@ -71,6 +74,7 @@ discard block |
||
71 | 74 | * |
72 | 75 | * @param string $view The view name |
73 | 76 | * @param array<string, mixed> $parameters An array of parameters to pass to the view |
77 | + * @param Response $response |
|
74 | 78 | * |
75 | 79 | * @return Response A Response instance |
76 | 80 | */ |
@@ -713,8 +717,8 @@ discard block |
||
713 | 717 | /** |
714 | 718 | * Compare history revisions of object. |
715 | 719 | * |
716 | - * @param int|string|null $baseRevision |
|
717 | - * @param int|string|null $compareRevision |
|
720 | + * @param null|integer $baseRevision |
|
721 | + * @param null|integer $compareRevision |
|
718 | 722 | * |
719 | 723 | * @throws AccessDeniedException If access is not granted |
720 | 724 | * @throws NotFoundHttpException If the object or revision does not exist or the audit reader is not available |
@@ -1410,6 +1414,7 @@ discard block |
||
1410 | 1414 | |
1411 | 1415 | /** |
1412 | 1416 | * Sets the admin form theme to form view. Used for compatibility between Symfony versions. |
1417 | + * @param string[] $theme |
|
1413 | 1418 | */ |
1414 | 1419 | private function setFormTheme(FormView $formView, ?array $theme = null): void |
1415 | 1420 | { |