@@ -63,6 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Adds mandatory parameters before calling render() |
66 | + * @param null|string $view |
|
66 | 67 | */ |
67 | 68 | public function renderWithExtraParams($view, array $parameters = [], Response $response = null) |
68 | 69 | { |
@@ -159,7 +160,7 @@ discard block |
||
159 | 160 | /** |
160 | 161 | * Delete action. |
161 | 162 | * |
162 | - * @param int|string|null $id |
|
163 | + * @param integer|null $id |
|
163 | 164 | * |
164 | 165 | * @return Response|RedirectResponse |
165 | 166 | * |
@@ -678,7 +679,7 @@ discard block |
||
678 | 679 | /** |
679 | 680 | * View history revision of object. |
680 | 681 | * |
681 | - * @param int|string|null $id |
|
682 | + * @param null|integer $id |
|
682 | 683 | * @param string|null $revision |
683 | 684 | * |
684 | 685 | * @return Response |
@@ -738,9 +739,9 @@ discard block |
||
738 | 739 | /** |
739 | 740 | * Compare history revisions of object. |
740 | 741 | * |
741 | - * @param int|string|null $id |
|
742 | - * @param int|string|null $base_revision |
|
743 | - * @param int|string|null $compare_revision |
|
742 | + * @param null|integer $id |
|
743 | + * @param null|integer $base_revision |
|
744 | + * @param null|integer $compare_revision |
|
744 | 745 | * |
745 | 746 | * @return Response |
746 | 747 | * |