@@ -220,6 +220,9 @@ |
||
220 | 220 | } |
221 | 221 | |
222 | 222 | |
223 | + /** |
|
224 | + * @param string $name |
|
225 | + */ |
|
223 | 226 | protected function access( $name ) |
224 | 227 | { |
225 | 228 | $class = new \ReflectionClass( \Aimeos\Controller\Jobs\Order\Email\Delivery\Standard::class ); |
@@ -220,6 +220,9 @@ |
||
220 | 220 | } |
221 | 221 | |
222 | 222 | |
223 | + /** |
|
224 | + * @param string $name |
|
225 | + */ |
|
223 | 226 | protected function access( $name ) |
224 | 227 | { |
225 | 228 | $class = new \ReflectionClass( \Aimeos\Controller\Jobs\Order\Email\Payment\Standard::class ); |
@@ -257,6 +257,9 @@ |
||
257 | 257 | } |
258 | 258 | |
259 | 259 | |
260 | + /** |
|
261 | + * @param string $name |
|
262 | + */ |
|
260 | 263 | protected function access( $name ) |
261 | 264 | { |
262 | 265 | $class = new \ReflectionClass( \Aimeos\Controller\Jobs\Order\Email\Voucher\Standard::class ); |
@@ -270,7 +270,7 @@ |
||
270 | 270 | * @param array|\Aimeos\MShop\Common\Item\Iface $items Item or list of items, maybe with associated list items |
271 | 271 | * @param string|null &$expire Expiration date that will be overwritten if an earlier date is found |
272 | 272 | * @param array &$tags List of tags the new tags will be added to |
273 | - * @param array $custom List of custom tags which are added too |
|
273 | + * @param string[] $custom List of custom tags which are added too |
|
274 | 274 | */ |
275 | 275 | protected function addMetaItems( $items, string &$expire = null, array &$tags, array $custom = [] ) |
276 | 276 | { |
@@ -390,7 +390,7 @@ |
||
390 | 390 | * Returns the parameters used by the html client. |
391 | 391 | * |
392 | 392 | * @param string[] $params Associative list of all parameters |
393 | - * @param array $prefixes List of prefixes the parameters must start with |
|
393 | + * @param string[] $prefixes List of prefixes the parameters must start with |
|
394 | 394 | * @return array Associative list of parameters used by the html client |
395 | 395 | */ |
396 | 396 | protected function getClientParams( array $params, array $prefixes = ['f_', 'l_', 'd_'] ) : array |
@@ -25,6 +25,7 @@ |
||
25 | 25 | * Initializes the class instance. |
26 | 26 | * |
27 | 27 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function __construct( \Aimeos\MShop\Context\Item\Iface $context ); |
30 | 31 | } |
@@ -26,6 +26,7 @@ |
||
26 | 26 | * |
27 | 27 | * @param \Aimeos\Client\Html\Iface $client Client object |
28 | 28 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function __construct( \Aimeos\Client\Html\Iface $client, \Aimeos\MShop\Context\Item\Iface $context ); |
31 | 32 | } |
@@ -209,6 +209,9 @@ |
||
209 | 209 | } |
210 | 210 | |
211 | 211 | |
212 | + /** |
|
213 | + * @param string $name |
|
214 | + */ |
|
212 | 215 | protected function access( $name ) |
213 | 216 | { |
214 | 217 | $class = new \ReflectionClass( \Aimeos\Client\Html\Account\Download\Standard::class ); |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | * Returns the list items for the given customer IDs and list type ID |
186 | 186 | * |
187 | 187 | * @param \Aimeos\MShop\Context\Item\Iface $context Context item object |
188 | - * @param array $custIds List of customer IDs |
|
188 | + * @param \Aimeos\Map $custIds List of customer IDs |
|
189 | 189 | * @return \Aimeos\Map List of customer list items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
190 | 190 | */ |
191 | 191 | protected function getListItems( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\Map $custIds ) : \Aimeos\Map |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | /** |
209 | 209 | * Returns a filtered list of products for which a notification should be sent |
210 | 210 | * |
211 | - * @param \Aimeos\MShop\Product\Item\Iface[] $products List of product items |
|
211 | + * @param \Aimeos\Map $products List of product items |
|
212 | 212 | * @param \Aimeos\MShop\Common\Item\Lists\Iface[] $listItems List of customer list items |
213 | 213 | * @return array Multi-dimensional associative list of list IDs as key and product / price item maps as values |
214 | 214 | */ |