@@ -155,7 +155,7 @@ |
||
155 | 155 | } |
156 | 156 | } |
157 | 157 | } |
158 | - catch( \Exception $e ) { ; } // no price available |
|
158 | + catch( \Exception $e ) {; } // no price available |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | return $result; |
@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | $this->object->run(); |
65 | 65 | |
66 | - $expected = dirname( __DIR__, 4) . '/tmp/logs/aimeos_' . date( 'Y-m-d' ) . '.log'; |
|
66 | + $expected = dirname( __DIR__, 4 ) . '/tmp/logs/aimeos_' . date( 'Y-m-d' ) . '.log'; |
|
67 | 67 | $this->assertFileExists( $expected ); |
68 | 68 | |
69 | 69 | unlink( $expected ); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | $this->pdf->setFont( 'dejavusans', '', 10 ); |
20 | 20 | |
21 | 21 | $vmargin = [ |
22 | - 'h1' => [ // HTML tag |
|
22 | + 'h1' => [// HTML tag |
|
23 | 23 | 0 => ['h' => 1.5, 'n' => 0], // space before = h * n |
24 | 24 | 1 => ['h' => 1.5, 'n' => 3] // space after = h * n |
25 | 25 | ], |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $this->pdf->setFont( 'dejavusans', '', 10 ); |
21 | 21 | |
22 | 22 | $vmargin = [ |
23 | - 'h1' => [ // HTML tag |
|
23 | + 'h1' => [// HTML tag |
|
24 | 24 | 0 => ['h' => 1.5, 'n' => 0], // space before = h * n |
25 | 25 | 1 => ['h' => 1.5, 'n' => 3] // space after = h * n |
26 | 26 | ], |
@@ -93,14 +93,14 @@ discard block |
||
93 | 93 | $data = [ |
94 | 94 | 'BCD', // required |
95 | 95 | '002', // Version 2 (required, 1=UTF-8, 2=ISO 8859-1, 3=ISO 8859-2, 4=ISO 8859-4, 5=ISO 8859-5, 6=ISO 8859-7, 7=ISO 8859-10, 8=ISO 8859-15) |
96 | - 1, // UTF-8 (required) |
|
96 | + 1, // UTF-8 (required) |
|
97 | 97 | 'SCT', // SEPA Credit Transfer (required) |
98 | - '', // BIC (optional) |
|
99 | - '', // Name of recipient (required, name of your company) |
|
100 | - '', // IBAN (required) |
|
101 | - $this->summaryBasket->getPrice()->getCurrencyId() . $total, // Currency and value (required) |
|
102 | - '', // Purpose (optional, 4 char code, https://wiki.windata.de/index.php?title=Purpose-SEPA-Codes) |
|
103 | - '', // ISO 11649 RF Creditor Reference (optional, 35 characters structured code) |
|
98 | + '', // BIC (optional) |
|
99 | + '', // Name of recipient (required, name of your company) |
|
100 | + '', // IBAN (required) |
|
101 | + $this->summaryBasket->getPrice()->getCurrencyId() . $total, // Currency and value (required) |
|
102 | + '', // Purpose (optional, 4 char code, https://wiki.windata.de/index.php?title=Purpose-SEPA-Codes) |
|
103 | + '', // ISO 11649 RF Creditor Reference (optional, 35 characters structured code) |
|
104 | 104 | $this->translate( 'controller/jobs', 'Invoice' ) . ' ' . $this->orderItem->getInvoiceNumber(), // Reference of order and other data (optional, max. 140 characters) |
105 | 105 | $this->summaryBasket->getCustomerReference(), // Notice to the customer (optional, max. 70 characters) |
106 | 106 | ]; |
@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | \Aimeos\MShop::inject( '\\Aimeos\\MShop\\Media\\Manager\\Standard', $managerStub ); |
58 | 58 | |
59 | - $managerStub->method( 'type' )->willReturn([ 'media'] ); |
|
59 | + $managerStub->method( 'type' )->willReturn( ['media'] ); |
|
60 | 60 | $managerStub->expects( $this->atLeast( 1 ) )->method( 'save' ); |
61 | 61 | $managerStub->expects( $this->atLeast( 1 ) )->method( 'scale' )->willReturnArgument( 0 ); |
62 | 62 |