@@ -34,7 +34,7 @@ |
||
34 | 34 | /** |
35 | 35 | * This method save a tree of viewReferences. |
36 | 36 | * |
37 | - * @param array $viewReferences |
|
37 | + * @param \Victoire\Bundle\CoreBundle\Entity\WebViewInterface[] $viewReferences |
|
38 | 38 | * @param string $parentId |
39 | 39 | * @param string $parentLocale |
40 | 40 | * @param bool $reset |
@@ -118,9 +118,10 @@ discard block |
||
118 | 118 | * |
119 | 119 | * @param string $slot |
120 | 120 | * @param View $view |
121 | - * @param Widget $widget |
|
121 | + * @param Widget $widgets |
|
122 | 122 | * @param BusinessEntity[] $classes |
123 | 123 | * @param int $position |
124 | + * @param \Victoire\Bundle\WidgetBundle\Model\Widget $activeWidget |
|
124 | 125 | * |
125 | 126 | * @throws \Exception |
126 | 127 | * |
@@ -275,6 +276,7 @@ discard block |
||
275 | 276 | * @param string $namespace the namespace |
276 | 277 | * @param string $formMode the form mode |
277 | 278 | * @param int $position |
279 | + * @param string $slotId |
|
278 | 280 | * |
279 | 281 | * @throws \Exception |
280 | 282 | * |
@@ -359,7 +359,7 @@ |
||
359 | 359 | /** |
360 | 360 | * Set widgets. |
361 | 361 | * |
362 | - * @param [WidgetMap] $widgetMaps |
|
362 | + * @param [WidgetMap] $widgetMap |
|
363 | 363 | * |
364 | 364 | * @return Widget |
365 | 365 | */ |
@@ -120,6 +120,9 @@ discard block |
||
120 | 120 | return $this->id; |
121 | 121 | } |
122 | 122 | |
123 | + /** |
|
124 | + * @param null|integer $id |
|
125 | + */ |
|
123 | 126 | public function setId($id) |
124 | 127 | { |
125 | 128 | $this->id = $id; |
@@ -224,7 +227,7 @@ discard block |
||
224 | 227 | } |
225 | 228 | |
226 | 229 | /** |
227 | - * @param mixed $replaced |
|
230 | + * @param WidgetMap $replaced |
|
228 | 231 | */ |
229 | 232 | public function setReplaced($replaced) |
230 | 233 | { |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * @param Widget $widget |
20 | 20 | * @param View $view |
21 | 21 | * |
22 | - * @return WidgetMap|WidgetMapNotFoundException |
|
22 | + * @return WidgetMap |
|
23 | 23 | */ |
24 | 24 | public static function getWidgetMapByWidgetAndView(Widget $widget, View $view) |
25 | 25 | { |
@@ -171,8 +171,8 @@ |
||
171 | 171 | * @param View $view |
172 | 172 | * @param $beforeChild |
173 | 173 | * @param $afterChild |
174 | - * @param $originalParent |
|
175 | - * @param $originalPosition |
|
174 | + * @param WidgetMap|null $originalParent |
|
175 | + * @param string $originalPosition |
|
176 | 176 | */ |
177 | 177 | public function moveChildren(View $view, $beforeChild, $afterChild, $originalParent, $originalPosition) |
178 | 178 | { |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * |
29 | 29 | * This method should only be used in ajax calls. |
30 | 30 | * |
31 | - * @param Form $form The form to parse |
|
31 | + * @param \Symfony\Component\Form\Form $form The form to parse |
|
32 | 32 | * @param bool $withChildren Do we parse the embedded forms |
33 | 33 | * |
34 | 34 | * @return string A string representation of all errors |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @param string $name |
65 | 65 | * |
66 | - * @return View |
|
66 | + * @return ArticleTranslation |
|
67 | 67 | */ |
68 | 68 | public function setName($name) |
69 | 69 | { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * |
78 | 78 | * @param string $slug |
79 | 79 | * |
80 | - * @return View |
|
80 | + * @return ArticleTranslation |
|
81 | 81 | */ |
82 | 82 | public function setSlug($slug) |
83 | 83 | { |
@@ -109,9 +109,8 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * Set category. |
111 | 111 | * |
112 | - * @param string $category |
|
113 | 112 | * |
114 | - * @return Article |
|
113 | + * @return ArticleTranslation |
|
115 | 114 | */ |
116 | 115 | public function setDescription($description) |
117 | 116 | { |
@@ -215,7 +215,7 @@ |
||
215 | 215 | /** |
216 | 216 | * @param VirtualBusinessPage $page |
217 | 217 | * @param BusinessTemplate $businessTemplate |
218 | - * @param array $businessProperties |
|
218 | + * @param BusinessProperty[] $businessProperties |
|
219 | 219 | * @param EntityManager $em |
220 | 220 | * @param $entity |
221 | 221 | * |