Completed
Push — master ( 1d1c91...d8b85b )
by Aimeos
02:51
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/templates/email/payment/pdf-body-standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 $this->pdf->setFont( 'dejavusans', '', 10 );
25 25
 
26 26
 $vmargin = [
27
-	'h1' => [ // HTML tag
27
+	'h1' => [// HTML tag
28 28
 		0 => ['h' => 1.5, 'n' => 0], // space before = h * n
29 29
 		1 => ['h' => 1.5, 'n' => 3] // space after = h * n
30 30
 	],
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.