@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | /** |
67 | 67 | * @param string $code |
68 | 68 | * @param string $action |
69 | - * @param array $parameters |
|
69 | + * @param string[] $parameters |
|
70 | 70 | * @param mixed $absolute |
71 | 71 | * |
72 | 72 | * @return string |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * @param string $code |
83 | 83 | * @param string $action |
84 | - * @param mixed $object |
|
85 | - * @param array $parameters |
|
84 | + * @param string $object |
|
85 | + * @param string[] $parameters |
|
86 | 86 | * @param mixed $absolute |
87 | 87 | * |
88 | 88 | * @return string |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
98 | - * @param $code |
|
99 | - * @param $action |
|
98 | + * @param string $code |
|
99 | + * @param string $action |
|
100 | 100 | * |
101 | 101 | * @return array |
102 | 102 | */ |
@@ -68,8 +68,8 @@ |
||
68 | 68 | /** |
69 | 69 | * NEXT_MAJOR: Go back to signature class check when bumping requirements to SF 2.6+. |
70 | 70 | * |
71 | - * @param TokenStorageInterface|SecurityContextInterface $tokenStorage |
|
72 | - * @param TokenStorageInterface|SecurityContextInterface $authorizationChecker |
|
71 | + * @param \PHPUnit_Framework_MockObject_MockObject $tokenStorage |
|
72 | + * @param \PHPUnit_Framework_MockObject_MockObject $authorizationChecker |
|
73 | 73 | * @param MutableAclProviderInterface $aclProvider |
74 | 74 | * @param string $maskBuilderClass |
75 | 75 | * @param array $superAdminRoles |
@@ -67,7 +67,7 @@ |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | - * @return ModelManagerInterface|\PHPUnit_Framework_MockObject_MockObject |
|
70 | + * @return ModelManagerInterface |
|
71 | 71 | */ |
72 | 72 | private function createModelManagerMock() |
73 | 73 | { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | /** |
40 | 40 | * @param mixed $data |
41 | 41 | * |
42 | - * @return ItemInterface |
|
42 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
43 | 43 | */ |
44 | 44 | protected function createItem($data) |
45 | 45 | { |
@@ -230,7 +230,7 @@ |
||
230 | 230 | } |
231 | 231 | |
232 | 232 | /** |
233 | - * @return AdminInterface |
|
233 | + * @return \PHPUnit_Framework_MockObject_MockObject |
|
234 | 234 | */ |
235 | 235 | private function getSonataAdminObject() |
236 | 236 | { |
@@ -2251,7 +2251,7 @@ discard block |
||
2251 | 2251 | * |
2252 | 2252 | * @param string $context |
2253 | 2253 | * |
2254 | - * @return array |
|
2254 | + * @return string[] |
|
2255 | 2255 | */ |
2256 | 2256 | public function getPermissionsShow($context) |
2257 | 2257 | { |
@@ -2495,7 +2495,7 @@ discard block |
||
2495 | 2495 | /** |
2496 | 2496 | * Set custom per page options. |
2497 | 2497 | * |
2498 | - * @param array $options |
|
2498 | + * @param integer[] $options |
|
2499 | 2499 | */ |
2500 | 2500 | public function setPerPageOptions(array $options) |
2501 | 2501 | { |
@@ -2915,7 +2915,7 @@ discard block |
||
2915 | 2915 | * NEXT_MAJOR: remove this method. |
2916 | 2916 | * |
2917 | 2917 | * @param MenuItemInterface $menu |
2918 | - * @param $action |
|
2918 | + * @param string $action |
|
2919 | 2919 | * @param AdminInterface $childAdmin |
2920 | 2920 | * |
2921 | 2921 | * @return mixed |
@@ -2209,6 +2209,9 @@ |
||
2209 | 2209 | return htmlspecialchars(http_build_query($url, '', '&')); |
2210 | 2210 | } |
2211 | 2211 | |
2212 | + /** |
|
2213 | + * @param string $privateMethod |
|
2214 | + */ |
|
2212 | 2215 | private function getMethodAsPublic($privateMethod) |
2213 | 2216 | { |
2214 | 2217 | $reflection = new \ReflectionMethod('Sonata\AdminBundle\Twig\Extension\SonataAdminExtension', $privateMethod); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | /** |
123 | 123 | * render a list element from the FieldDescription. |
124 | 124 | * |
125 | - * @param mixed $object |
|
125 | + * @param \stdClass $object |
|
126 | 126 | * @param FieldDescriptionInterface $fieldDescription |
127 | 127 | * @param array $params |
128 | 128 | * |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | * render a view element. |
153 | 153 | * |
154 | 154 | * @param FieldDescriptionInterface $fieldDescription |
155 | - * @param mixed $object |
|
155 | + * @param \stdClass $object |
|
156 | 156 | * |
157 | 157 | * @return string |
158 | 158 | */ |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | /** |
292 | 292 | * Get the identifiers as a string that is safe to use in a url. |
293 | 293 | * |
294 | - * @param object $model |
|
294 | + * @param \stdClass $model |
|
295 | 295 | * @param AdminInterface $admin |
296 | 296 | * |
297 | 297 | * @return string string representation of the id that is safe to use in a url |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | /** |
317 | 317 | * @param $type |
318 | 318 | * |
319 | - * @return string|bool |
|
319 | + * @return string|false |
|
320 | 320 | */ |
321 | 321 | public function getXEditableType($type) |
322 | 322 | { |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | * @param FieldDescriptionInterface $fieldDescription |
448 | 448 | * @param string $defaultTemplate |
449 | 449 | * |
450 | - * @return \Twig_TemplateInterface |
|
450 | + * @return \Twig_Template |
|
451 | 451 | */ |
452 | 452 | private function getTemplate( |
453 | 453 | FieldDescriptionInterface $fieldDescription, |
@@ -58,6 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | /** |
60 | 60 | * {@inheritdoc} |
61 | + * @param null|string $view |
|
61 | 62 | */ |
62 | 63 | public function render($view, array $parameters = [], Response $response = null) |
63 | 64 | { |
@@ -154,7 +155,7 @@ discard block |
||
154 | 155 | /** |
155 | 156 | * Delete action. |
156 | 157 | * |
157 | - * @param int|string|null $id |
|
158 | + * @param integer|null $id |
|
158 | 159 | * |
159 | 160 | * @return Response|RedirectResponse |
160 | 161 | * |
@@ -673,7 +674,7 @@ discard block |
||
673 | 674 | /** |
674 | 675 | * View history revision of object. |
675 | 676 | * |
676 | - * @param int|string|null $id |
|
677 | + * @param null|integer $id |
|
677 | 678 | * @param string|null $revision |
678 | 679 | * |
679 | 680 | * @return Response |
@@ -733,9 +734,9 @@ discard block |
||
733 | 734 | /** |
734 | 735 | * Compare history revisions of object. |
735 | 736 | * |
736 | - * @param int|string|null $id |
|
737 | - * @param int|string|null $base_revision |
|
738 | - * @param int|string|null $compare_revision |
|
737 | + * @param null|integer $id |
|
738 | + * @param null|integer $base_revision |
|
739 | + * @param null|integer $compare_revision |
|
739 | 740 | * |
740 | 741 | * @return Response |
741 | 742 | * |