@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | /** |
76 | 76 | * Returns the HTML code for a copy of a resource object |
77 | 77 | * |
78 | - * @return string Generated output |
|
78 | + * @return \Illuminate\Contracts\View\View Generated output |
|
79 | 79 | */ |
80 | 80 | public function copyAction() |
81 | 81 | { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * Returns the HTML code for a new resource object |
93 | 93 | * |
94 | - * @return string Generated output |
|
94 | + * @return \Illuminate\Contracts\View\View Generated output |
|
95 | 95 | */ |
96 | 96 | public function createAction() |
97 | 97 | { |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * Deletes the resource object or a list of resource objects |
109 | 109 | * |
110 | - * @return string Generated output |
|
110 | + * @return \Illuminate\Contracts\View\View Generated output |
|
111 | 111 | */ |
112 | 112 | public function deleteAction() |
113 | 113 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Returns the HTML code for the requested resource object |
125 | 125 | * |
126 | - * @return string Generated output |
|
126 | + * @return \Illuminate\Contracts\View\View Generated output |
|
127 | 127 | */ |
128 | 128 | public function getAction() |
129 | 129 | { |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | /** |
140 | 140 | * Saves a new resource object |
141 | 141 | * |
142 | - * @return string Generated output |
|
142 | + * @return \Illuminate\Contracts\View\View Generated output |
|
143 | 143 | */ |
144 | 144 | public function saveAction() |
145 | 145 | { |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | /** |
156 | 156 | * Returns the HTML code for a list of resource objects |
157 | 157 | * |
158 | - * @return string Generated output |
|
158 | + * @return \Illuminate\Contracts\View\View Generated output |
|
159 | 159 | */ |
160 | 160 | public function searchAction() |
161 | 161 | { |
@@ -125,7 +125,7 @@ |
||
125 | 125 | /** |
126 | 126 | * Get the services provided by the provider. |
127 | 127 | * |
128 | - * @return array |
|
128 | + * @return string[] |
|
129 | 129 | */ |
130 | 130 | public function provides() |
131 | 131 | { |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * Creates a list of all available translations. |
162 | 162 | * |
163 | 163 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
164 | - * @return array List of language IDs with labels |
|
164 | + * @return string List of language IDs with labels |
|
165 | 165 | */ |
166 | 166 | protected function getJsonLanguages( \Aimeos\MShop\Context\Item\Iface $context ) |
167 | 167 | { |
@@ -237,7 +237,6 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
239 | 239 | * @param string $sitecode Unique site code |
240 | - * @param string $locale ISO language code, e.g. "en" or "en_GB" |
|
241 | 240 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object |
242 | 241 | */ |
243 | 242 | protected function setLocale( \Aimeos\MShop\Context\Item\Iface $context, $sitecode = 'default' ) |