Completed
Push — master ( 06a6c1...f03436 )
by Aimeos
03:56
created
lib/custom/src/MW/View/Helper/Site/Standard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	/**
38 38
 	 * Returns the site view helper
39 39
 	 *
40
-	 * @return Aimeos\MW\View\Helper\Site\Iface Site view helper
40
+	 * @return Standard Site view helper
41 41
 	 */
42 42
 	public function transform()
43 43
 	{
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm/Locale/Site/Standard.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -498,7 +498,7 @@
 block discarded – undo
498 498
 	/**
499 499
 	 * Constructs the data array for the view from the given item
500 500
 	 *
501
-	 * @param \Aimeos\MShop\Locale\Item\Iface $item Locale item object
501
+	 * @param \Aimeos\MShop\Locale\Item\Site\Iface $item Locale item object
502 502
 	 * @return string[] Multi-dimensional associative list of item data
503 503
 	 */
504 504
 	protected function toArray( \Aimeos\MShop\Locale\Item\Site\Iface $item, $copy = false )
Please login to merge, or discard this patch.
Braces   +18 added lines, -36 removed lines patch added patch discarded remove patch
@@ -90,20 +90,17 @@  discard block
 block discarded – undo
90 90
 				$view->tabindex = ++$idx + 1;
91 91
 				$view->itemBody .= $client->copy();
92 92
 			}
93
-		}
94
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
93
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
95 94
 		{
96 95
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'admin', $e->getMessage() ) );
97 96
 			$view->errors = $view->get( 'errors', [] ) + $error;
98 97
 			$this->logException( $e );
99
-		}
100
-		catch( \Aimeos\MShop\Exception $e )
98
+		} catch( \Aimeos\MShop\Exception $e )
101 99
 		{
102 100
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
103 101
 			$view->errors = $view->get( 'errors', [] ) + $error;
104 102
 			$this->logException( $e );
105
-		}
106
-		catch( \Exception $e )
103
+		} catch( \Exception $e )
107 104
 		{
108 105
 			$error = array( 'locale-site-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
109 106
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -145,20 +142,17 @@  discard block
 block discarded – undo
145 142
 				$view->tabindex = ++$idx + 1;
146 143
 				$view->itemBody .= $client->create();
147 144
 			}
148
-		}
149
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
145
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
150 146
 		{
151 147
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'admin', $e->getMessage() ) );
152 148
 			$view->errors = $view->get( 'errors', [] ) + $error;
153 149
 			$this->logException( $e );
154
-		}
155
-		catch( \Aimeos\MShop\Exception $e )
150
+		} catch( \Aimeos\MShop\Exception $e )
156 151
 		{
157 152
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
158 153
 			$view->errors = $view->get( 'errors', [] ) + $error;
159 154
 			$this->logException( $e );
160
-		}
161
-		catch( \Exception $e )
155
+		} catch( \Exception $e )
162 156
 		{
163 157
 			$error = array( 'locale-site-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
164 158
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -201,20 +195,17 @@  discard block
 block discarded – undo
201 195
 
202 196
 			$this->nextAction( $view, 'search', 'locale/site', null, 'delete' );
203 197
 			return;
204
-		}
205
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
198
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
206 199
 		{
207 200
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'admin', $e->getMessage() ) );
208 201
 			$view->errors = $view->get( 'errors', [] ) + $error;
209 202
 			$this->logException( $e );
210
-		}
211
-		catch( \Aimeos\MShop\Exception $e )
203
+		} catch( \Aimeos\MShop\Exception $e )
212 204
 		{
213 205
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
214 206
 			$view->errors = $view->get( 'errors', [] ) + $error;
215 207
 			$this->logException( $e );
216
-		}
217
-		catch( \Exception $e )
208
+		} catch( \Exception $e )
218 209
 		{
219 210
 			$error = array( 'locale-site-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
220 211
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -257,20 +248,17 @@  discard block
 block discarded – undo
257 248
 				$view->tabindex = ++$idx + 1;
258 249
 				$view->itemBody .= $client->get();
259 250
 			}
260
-		}
261
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
251
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
262 252
 		{
263 253
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'admin', $e->getMessage() ) );
264 254
 			$view->errors = $view->get( 'errors', [] ) + $error;
265 255
 			$this->logException( $e );
266
-		}
267
-		catch( \Aimeos\MShop\Exception $e )
256
+		} catch( \Aimeos\MShop\Exception $e )
268 257
 		{
269 258
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
270 259
 			$view->errors = $view->get( 'errors', [] ) + $error;
271 260
 			$this->logException( $e );
272
-		}
273
-		catch( \Exception $e )
261
+		} catch( \Exception $e )
274 262
 		{
275 263
 			$error = array( 'locale-site-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
276 264
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -308,20 +296,17 @@  discard block
 block discarded – undo
308 296
 
309 297
 			$this->nextAction( $view, $view->param( 'next' ), 'locale/site', $view->item->getId(), 'save' );
310 298
 			return;
311
-		}
312
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
299
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
313 300
 		{
314 301
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'admin', $e->getMessage() ) );
315 302
 			$view->errors = $view->get( 'errors', [] ) + $error;
316 303
 			$this->logException( $e );
317
-		}
318
-		catch( \Aimeos\MShop\Exception $e )
304
+		} catch( \Aimeos\MShop\Exception $e )
319 305
 		{
320 306
 			$error = array( 'locale-site-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
321 307
 			$view->errors = $view->get( 'errors', [] ) + $error;
322 308
 			$this->logException( $e );
323
-		}
324
-		catch( \Exception $e )
309
+		} catch( \Exception $e )
325 310
 		{
326 311
 			$error = array( 'locale-site-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
327 312
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -368,14 +353,12 @@  discard block
 block discarded – undo
368 353
 			foreach( $this->getSubClients() as $client ) {
369 354
 				$view->itemBody .= $client->search();
370 355
 			}
371
-		}
372
-		catch( \Aimeos\MShop\Exception $e )
356
+		} catch( \Aimeos\MShop\Exception $e )
373 357
 		{
374 358
 			$error = array( 'locale-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
375 359
 			$view->errors = $view->get( 'errors', [] ) + $error;
376 360
 			$this->logException( $e );
377
-		}
378
-		catch( \Exception $e )
361
+		} catch( \Exception $e )
379 362
 		{
380 363
 			$error = array( 'locale-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
381 364
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -563,8 +546,7 @@  discard block
 block discarded – undo
563 546
 		{
564 547
 			$this->checkSite( $super, $data['locale.site.id'] );
565 548
 			$item = $manager->getItem( $data['locale.site.id'] );
566
-		}
567
-		else
549
+		} else
568 550
 		{
569 551
 			$this->checkSite( $super );
570 552
 			$item = $manager->createItem();
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm/Locale/Language/Standard.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -476,7 +476,7 @@
 block discarded – undo
476 476
 	/**
477 477
 	 * Constructs the data array for the view from the given item
478 478
 	 *
479
-	 * @param \Aimeos\MShop\Locale\Item\Iface $item Locale item object
479
+	 * @param \Aimeos\MShop\Locale\Item\Language\Iface $item Locale item object
480 480
 	 * @return string[] Multi-dimensional associative list of item data
481 481
 	 */
482 482
 	protected function toArray( \Aimeos\MShop\Locale\Item\Language\Iface $item, $copy = false )
Please login to merge, or discard this patch.
Braces   +13 added lines, -26 removed lines patch added patch discarded remove patch
@@ -88,14 +88,12 @@  discard block
 block discarded – undo
88 88
 				$view->tabindex = ++$idx + 1;
89 89
 				$view->itemBody .= $client->copy();
90 90
 			}
91
-		}
92
-		catch( \Aimeos\MShop\Exception $e )
91
+		} catch( \Aimeos\MShop\Exception $e )
93 92
 		{
94 93
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
95 94
 			$view->errors = $view->get( 'errors', [] ) + $error;
96 95
 			$this->logException( $e );
97
-		}
98
-		catch( \Exception $e )
96
+		} catch( \Exception $e )
99 97
 		{
100 98
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
101 99
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -135,14 +133,12 @@  discard block
 block discarded – undo
135 133
 				$view->tabindex = ++$idx + 1;
136 134
 				$view->itemBody .= $client->create();
137 135
 			}
138
-		}
139
-		catch( \Aimeos\MShop\Exception $e )
136
+		} catch( \Aimeos\MShop\Exception $e )
140 137
 		{
141 138
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
142 139
 			$view->errors = $view->get( 'errors', [] ) + $error;
143 140
 			$this->logException( $e );
144
-		}
145
-		catch( \Exception $e )
141
+		} catch( \Exception $e )
146 142
 		{
147 143
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
148 144
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -183,14 +179,12 @@  discard block
 block discarded – undo
183 179
 
184 180
 			$this->nextAction( $view, 'search', 'locale/language', null, 'delete' );
185 181
 			return;
186
-		}
187
-		catch( \Aimeos\MShop\Exception $e )
182
+		} catch( \Aimeos\MShop\Exception $e )
188 183
 		{
189 184
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
190 185
 			$view->errors = $view->get( 'errors', [] ) + $error;
191 186
 			$this->logException( $e );
192
-		}
193
-		catch( \Exception $e )
187
+		} catch( \Exception $e )
194 188
 		{
195 189
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
196 190
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -231,14 +225,12 @@  discard block
 block discarded – undo
231 225
 				$view->tabindex = ++$idx + 1;
232 226
 				$view->itemBody .= $client->get();
233 227
 			}
234
-		}
235
-		catch( \Aimeos\MShop\Exception $e )
228
+		} catch( \Aimeos\MShop\Exception $e )
236 229
 		{
237 230
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
238 231
 			$view->errors = $view->get( 'errors', [] ) + $error;
239 232
 			$this->logException( $e );
240
-		}
241
-		catch( \Exception $e )
233
+		} catch( \Exception $e )
242 234
 		{
243 235
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
244 236
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -275,18 +267,15 @@  discard block
 block discarded – undo
275 267
 
276 268
 			$this->nextAction( $view, $view->param( 'next' ), 'locale/language', strtoupper( $view->item->getId() ), 'save' );
277 269
 			return;
278
-		}
279
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
270
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
280 271
 		{
281 272
 			// fall through to create
282
-		}
283
-		catch( \Aimeos\MShop\Exception $e )
273
+		} catch( \Aimeos\MShop\Exception $e )
284 274
 		{
285 275
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
286 276
 			$view->errors = $view->get( 'errors', [] ) + $error;
287 277
 			$this->logException( $e );
288
-		}
289
-		catch( \Exception $e )
278
+		} catch( \Exception $e )
290 279
 		{
291 280
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
292 281
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -328,14 +317,12 @@  discard block
 block discarded – undo
328 317
 			foreach( $this->getSubClients() as $client ) {
329 318
 				$view->itemBody .= $client->search();
330 319
 			}
331
-		}
332
-		catch( \Aimeos\MShop\Exception $e )
320
+		} catch( \Aimeos\MShop\Exception $e )
333 321
 		{
334 322
 			$error = array( 'locale-language-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
335 323
 			$view->errors = $view->get( 'errors', [] ) + $error;
336 324
 			$this->logException( $e );
337
-		}
338
-		catch( \Exception $e )
325
+		} catch( \Exception $e )
339 326
 		{
340 327
 			$error = array( 'locale-language-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
341 328
 			$view->errors = $view->get( 'errors', [] ) + $error;
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm/Locale/Currency/Standard.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -479,7 +479,7 @@
 block discarded – undo
479 479
 	/**
480 480
 	 * Constructs the data array for the view from the given item
481 481
 	 *
482
-	 * @param \Aimeos\MShop\Locale\Item\Iface $item Locale item object
482
+	 * @param \Aimeos\MShop\Locale\Item\Currency\Iface $item Locale item object
483 483
 	 * @return string[] Multi-dimensional associative list of item data
484 484
 	 */
485 485
 	protected function toArray( \Aimeos\MShop\Locale\Item\Currency\Iface $item, $copy = false )
Please login to merge, or discard this patch.
Braces   +13 added lines, -26 removed lines patch added patch discarded remove patch
@@ -88,14 +88,12 @@  discard block
 block discarded – undo
88 88
 				$view->tabindex = ++$idx + 1;
89 89
 				$view->itemBody .= $client->copy();
90 90
 			}
91
-		}
92
-		catch( \Aimeos\MShop\Exception $e )
91
+		} catch( \Aimeos\MShop\Exception $e )
93 92
 		{
94 93
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
95 94
 			$view->errors = $view->get( 'errors', [] ) + $error;
96 95
 			$this->logException( $e );
97
-		}
98
-		catch( \Exception $e )
96
+		} catch( \Exception $e )
99 97
 		{
100 98
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
101 99
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -135,14 +133,12 @@  discard block
 block discarded – undo
135 133
 				$view->tabindex = ++$idx + 1;
136 134
 				$view->itemBody .= $client->create();
137 135
 			}
138
-		}
139
-		catch( \Aimeos\MShop\Exception $e )
136
+		} catch( \Aimeos\MShop\Exception $e )
140 137
 		{
141 138
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
142 139
 			$view->errors = $view->get( 'errors', [] ) + $error;
143 140
 			$this->logException( $e );
144
-		}
145
-		catch( \Exception $e )
141
+		} catch( \Exception $e )
146 142
 		{
147 143
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
148 144
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -183,14 +179,12 @@  discard block
 block discarded – undo
183 179
 
184 180
 			$this->nextAction( $view, 'search', 'locale/currency', null, 'delete' );
185 181
 			return;
186
-		}
187
-		catch( \Aimeos\MShop\Exception $e )
182
+		} catch( \Aimeos\MShop\Exception $e )
188 183
 		{
189 184
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
190 185
 			$view->errors = $view->get( 'errors', [] ) + $error;
191 186
 			$this->logException( $e );
192
-		}
193
-		catch( \Exception $e )
187
+		} catch( \Exception $e )
194 188
 		{
195 189
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
196 190
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -231,14 +225,12 @@  discard block
 block discarded – undo
231 225
 				$view->tabindex = ++$idx + 1;
232 226
 				$view->itemBody .= $client->get();
233 227
 			}
234
-		}
235
-		catch( \Aimeos\MShop\Exception $e )
228
+		} catch( \Aimeos\MShop\Exception $e )
236 229
 		{
237 230
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
238 231
 			$view->errors = $view->get( 'errors', [] ) + $error;
239 232
 			$this->logException( $e );
240
-		}
241
-		catch( \Exception $e )
233
+		} catch( \Exception $e )
242 234
 		{
243 235
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
244 236
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -275,18 +267,15 @@  discard block
 block discarded – undo
275 267
 
276 268
 			$this->nextAction( $view, $view->param( 'next' ), 'locale/currency', $view->item->getId(), 'save' );
277 269
 			return;
278
-		}
279
-		catch( \Aimeos\Admin\JQAdm\Exception $e )
270
+		} catch( \Aimeos\Admin\JQAdm\Exception $e )
280 271
 		{
281 272
 			// fall through to create
282
-		}
283
-		catch( \Aimeos\MShop\Exception $e )
273
+		} catch( \Aimeos\MShop\Exception $e )
284 274
 		{
285 275
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
286 276
 			$view->errors = $view->get( 'errors', [] ) + $error;
287 277
 			$this->logException( $e );
288
-		}
289
-		catch( \Exception $e )
278
+		} catch( \Exception $e )
290 279
 		{
291 280
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
292 281
 			$view->errors = $view->get( 'errors', [] ) + $error;
@@ -328,14 +317,12 @@  discard block
 block discarded – undo
328 317
 			foreach( $this->getSubClients() as $client ) {
329 318
 				$view->itemBody .= $client->search();
330 319
 			}
331
-		}
332
-		catch( \Aimeos\MShop\Exception $e )
320
+		} catch( \Aimeos\MShop\Exception $e )
333 321
 		{
334 322
 			$error = array( 'locale-currency-item' => $context->getI18n()->dt( 'mshop', $e->getMessage() ) );
335 323
 			$view->errors = $view->get( 'errors', [] ) + $error;
336 324
 			$this->logException( $e );
337
-		}
338
-		catch( \Exception $e )
325
+		} catch( \Exception $e )
339 326
 		{
340 327
 			$error = array( 'locale-currency-item' => $e->getMessage() . ', ' . $e->getFile() . ':' . $e->getLine() );
341 328
 			$view->errors = $view->get( 'errors', [] ) + $error;
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Order/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -306,6 +306,9 @@
 block discarded – undo
306 306
 	}
307 307
 
308 308
 
309
+	/**
310
+	 * @param string $method
311
+	 */
309 312
 	public function getClientMock( $method )
310 313
 	{
311 314
 		$object = $this->getMockBuilder( '\Aimeos\Admin\JQAdm\Order\Standard' )
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Attribute/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -301,6 +301,9 @@
 block discarded – undo
301 301
 	}
302 302
 
303 303
 
304
+	/**
305
+	 * @param string $method
306
+	 */
304 307
 	public function getClientMock( $method )
305 308
 	{
306 309
 		$object = $this->getMockBuilder( '\Aimeos\Admin\JQAdm\Attribute\Standard' )
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Catalog/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -295,6 +295,9 @@
 block discarded – undo
295 295
 	}
296 296
 
297 297
 
298
+	/**
299
+	 * @param string $method
300
+	 */
298 301
 	public function getClientMock( $method )
299 302
 	{
300 303
 		$object = $this->getMockBuilder( '\Aimeos\Admin\JQAdm\Catalog\Standard' )
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Common/Factory/BaseTest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -126,12 +126,19 @@
 block discarded – undo
126 126
 		return self::addDecorators( $context, $client, $decorators, $classprefix );
127 127
 	}
128 128
 
129
+	/**
130
+	 * @param string $path
131
+	 */
129 132
 	public static function addClientDecoratorsPublic( \Aimeos\MShop\Context\Item\Iface $context,
130 133
 		\Aimeos\Admin\JQAdm\Iface $client, $path )
131 134
 	{
132 135
 		return self::addClientDecorators( $context, $client, $path );
133 136
 	}
134 137
 
138
+	/**
139
+	 * @param string $classname
140
+	 * @param string $interface
141
+	 */
135 142
 	public static function createClientBasePublic( \Aimeos\MShop\Context\Item\Iface $context,
136 143
 		$classname, $interface )
137 144
 	{
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Coupon/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -307,6 +307,9 @@
 block discarded – undo
307 307
 	}
308 308
 
309 309
 
310
+	/**
311
+	 * @param string $method
312
+	 */
310 313
 	public function getClientMock( $method )
311 314
 	{
312 315
 		$object = $this->getMockBuilder( '\Aimeos\Admin\JQAdm\Coupon\Standard' )
Please login to merge, or discard this patch.