@@ -36,10 +36,10 @@ |
||
36 | 36 | * |
37 | 37 | * @see PropertyAccessorInterface::getValue() |
38 | 38 | * |
39 | - * @param sgring $namespace |
|
40 | - * @param string $path |
|
39 | + * @param string $namespace |
|
41 | 40 | * @param string $element |
42 | 41 | * @param mixed $default |
42 | + * @param string $key |
|
43 | 43 | * |
44 | 44 | * @return mixed |
45 | 45 | */ |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * |
49 | 49 | * @param Request $request |
50 | 50 | * |
51 | - * @return Response |
|
51 | + * @return \Symfony\Component\HttpFoundation\Response |
|
52 | 52 | */ |
53 | 53 | public function listAction(Request $request) |
54 | 54 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @param Request $request |
65 | 65 | * |
66 | - * @return Response |
|
66 | + * @return \Symfony\Component\HttpFoundation\Response |
|
67 | 67 | */ |
68 | 68 | public function createAction(Request $request) |
69 | 69 | { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @param Request $request |
103 | 103 | * |
104 | - * @return Response |
|
104 | + * @return \Symfony\Component\HttpFoundation\Response |
|
105 | 105 | */ |
106 | 106 | public function editAction(Page $page, Request $request) |
107 | 107 | { |
@@ -15,7 +15,6 @@ discard block |
||
15 | 15 | /** |
16 | 16 | * Create and return a new Zone from given ZoneType and optionnale Component collection. |
17 | 17 | * |
18 | - * @param ZoneTypeInterface $zoneType |
|
19 | 18 | * @param ComponentCollection $components |
20 | 19 | * |
21 | 20 | * @return ZoneInterface |
@@ -25,7 +24,6 @@ discard block |
||
25 | 24 | /** |
26 | 25 | * Update given Zone component collection. |
27 | 26 | * |
28 | - * @param ZoneTypeInterface $zoneType |
|
29 | 27 | * @param ComponentCollection $components |
30 | 28 | */ |
31 | 29 | public function edit(ZoneInterface $zone, ComponentCollection $components); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * |
21 | 21 | * @param Request $request |
22 | 22 | * |
23 | - * @return Response |
|
23 | + * @return \Symfony\Component\HttpFoundation\Response |
|
24 | 24 | */ |
25 | 25 | public function listAction(Request $request) |
26 | 26 | { |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param string $contentType |
56 | 56 | * @param int $contentId |
57 | 57 | * |
58 | - * @return Response |
|
58 | + * @return RedirectResponse |
|
59 | 59 | */ |
60 | 60 | public function initAction(Request $request, $templateType, $contentType, $contentId = null) |
61 | 61 | { |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @param Request $request |
88 | 88 | * |
89 | - * @return Response |
|
89 | + * @return \Symfony\Component\HttpFoundation\Response |
|
90 | 90 | */ |
91 | 91 | public function editAction($id, Request $request) |
92 | 92 | { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * @param string $componentTypeId |
148 | 148 | * @param Request $request |
149 | 149 | * |
150 | - * @return Response |
|
150 | + * @return RedirectResponse |
|
151 | 151 | */ |
152 | 152 | public function addComponentAction($id, $zoneTypeId, $componentTypeId, Request $request) |
153 | 153 | { |
@@ -19,7 +19,6 @@ |
||
19 | 19 | /** |
20 | 20 | * Initialisation function. |
21 | 21 | * |
22 | - * @param ComponentInterface $zone |
|
23 | 22 | */ |
24 | 23 | public function init(ComponentInterface $component) |
25 | 24 | { |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * @param int $componentId |
20 | 20 | * @param Request $request |
21 | 21 | * |
22 | - * @return Response |
|
22 | + * @return RedirectResponse |
|
23 | 23 | */ |
24 | 24 | public function deleteAction($zoneId, $componentId, Request $request) |
25 | 25 | { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | /** |
91 | 91 | * Returns current activated theme. |
92 | 92 | * |
93 | - * @return ThemeInterface |
|
93 | + * @return Theme |
|
94 | 94 | */ |
95 | 95 | public function getCurrentTheme() |
96 | 96 | { |