@@ -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 ); |
@@ -24,7 +24,7 @@ |
||
| 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 | ], |
@@ -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 ); |