Completed
Pull Request — master (#110)
by
unknown
02:40
created
controller/jobs/tests/Controller/Jobs/Order/Email/Delivery/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -220,6 +220,9 @@
 block discarded – undo
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 );
Please login to merge, or discard this patch.
controller/jobs/tests/Controller/Jobs/Order/Email/Payment/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -220,6 +220,9 @@
 block discarded – undo
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 );
Please login to merge, or discard this patch.
controller/jobs/tests/Controller/Jobs/Order/Email/Voucher/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -257,6 +257,9 @@
 block discarded – undo
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 );
Please login to merge, or discard this patch.
client/html/src/Client/Html/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
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
 	{
Please login to merge, or discard this patch.
client/html/src/Client/Html/Catalog/Stage/Standard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -390,7 +390,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
client/html/src/Client/Html/Common/Client/Factory/Iface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
client/html/src/Client/Html/Common/Decorator/Iface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
client/html/tests/Client/Html/Account/Download/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -209,6 +209,9 @@
 block discarded – undo
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 );
Please login to merge, or discard this patch.
controller/jobs/src/Controller/Jobs/Customer/Email/Watch/Standard.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.