Passed
Branch master (4f99e3)
by Aimeos
04:48
created
client/html/src/Client/Html/Catalog/Base.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 		 * @see client/html/catalog/stock/url/action
62 62
 		 * @see client/html/catalog/stock/url/config
63 63
 		 * @see client/html/catalog/stock/url/max-items
64
-		*/
64
+		 */
65 65
 		$cntl = $view->config( 'client/html/catalog/stock/url/controller', 'catalog' );
66 66
 
67 67
 		/** client/html/catalog/stock/url/action
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 		 * @see client/html/catalog/stock/url/controller
79 79
 		 * @see client/html/catalog/stock/url/config
80 80
 		 * @see client/html/catalog/stock/url/max-items
81
-		*/
81
+		 */
82 82
 		$action = $view->config( 'client/html/catalog/stock/url/action', 'stock' );
83 83
 
84 84
 		/** client/html/catalog/stock/url/config
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 		 * @see client/html/catalog/stock/url/controller
102 102
 		 * @see client/html/catalog/stock/url/action
103 103
 		 * @see client/html/catalog/stock/url/max-items
104
-		*/
104
+		 */
105 105
 		$config = $view->config( 'client/html/catalog/stock/url/config', [] );
106 106
 
107 107
 		/** client/html/catalog/stock/url/max-items
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 		 * @see client/html/catalog/stock/url/controller
120 120
 		 * @see client/html/catalog/stock/url/action
121 121
 		 * @see client/html/catalog/stock/url/config
122
-		*/
122
+		 */
123 123
 		$max = $view->config( 'client/html/catalog/stock/url/max-items', 100 );
124 124
 
125 125
 
Please login to merge, or discard this patch.
client/html/src/Client/Html/Base.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -541,15 +541,15 @@
 block discarded – undo
541 541
 
542 542
 
543 543
 	/**
544
-	* Returns the template for the given configuration key
545
-	*
546
-	* If the "l_type" parameter is present, a specific template for this given
547
-	* type is used if available.
548
-	*
549
-	* @param string $confkey Key to the configuration setting for the template
550
-	* @param string $default Default template if none is configured or not found
551
-	* @return string Relative template path
552
-	*/
544
+	 * Returns the template for the given configuration key
545
+	 *
546
+	 * If the "l_type" parameter is present, a specific template for this given
547
+	 * type is used if available.
548
+	 *
549
+	 * @param string $confkey Key to the configuration setting for the template
550
+	 * @param string $default Default template if none is configured or not found
551
+	 * @return string Relative template path
552
+	 */
553 553
 	protected function getTemplatePath( $confkey, $default )
554 554
 	{
555 555
 		if( ( $type = $this->view->param( 'l_type' ) ) !== null && ctype_alnum( $type ) !== false ) {
Please login to merge, or discard this patch.
client/html/src/Client/Html/Checkout/Standard/Address/Delivery/Standard.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -459,7 +459,7 @@
 block discarded – undo
459 459
 		 * @see client/html/checkout/standard/address/delivery/mandatory
460 460
 		 * @see client/html/checkout/standard/address/delivery/optional
461 461
 		 * @see client/html/checkout/standard/address/delivery/hidden
462
-		*/
462
+		 */
463 463
 		$disable = $view->config( 'client/html/checkout/standard/address/delivery/disable-new', false );
464 464
 		$type = \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY;
465 465
 
Please login to merge, or discard this patch.
client/html/src/Client/Html/Checkout/Standard/Address/Billing/Standard.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -536,7 +536,7 @@
 block discarded – undo
536 536
 		 * @see client/html/checkout/standard/address/billing/mandatory
537 537
 		 * @see client/html/checkout/standard/address/billing/optional
538 538
 		 * @see client/html/checkout/standard/address/billing/hidden
539
-		*/
539
+		 */
540 540
 		$disable = $view->config( 'client/html/checkout/standard/address/billing/disable-new', false );
541 541
 		$type = \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT;
542 542
 
Please login to merge, or discard this patch.
client/html/src/Client/Html/Checkout/Standard/Standard.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 		 * @see client/html/checkout/standard/url/target
534 534
 		 * @see client/html/checkout/standard/url/action
535 535
 		 * @see client/html/checkout/standard/url/config
536
-		*/
536
+		 */
537 537
 		$cCntl = $view->config( 'client/html/checkout/standard/url/controller', 'checkout' );
538 538
 
539 539
 		/** client/html/checkout/standard/url/action
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
 		 * @see client/html/checkout/standard/url/target
550 550
 		 * @see client/html/checkout/standard/url/controller
551 551
 		 * @see client/html/checkout/standard/url/config
552
-		*/
552
+		 */
553 553
 		$cAction = $view->config( 'client/html/checkout/standard/url/action', 'index' );
554 554
 
555 555
 		/** client/html/checkout/standard/url/config
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 		 * @see client/html/checkout/standard/url/controller
573 573
 		 * @see client/html/checkout/standard/url/action
574 574
 		 * @see client/html/url/config
575
-		*/
575
+		 */
576 576
 		$cConfig = $view->config( 'client/html/checkout/standard/url/config', [] );
577 577
 
578 578
 
Please login to merge, or discard this patch.
client/html/config/client.php 1 patch
Indentation   +268 added lines, -268 removed lines patch added patch discarded remove patch
@@ -1,272 +1,272 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-    'html' => array(
5
-        'catalog' => array(
6
-            'lists' => array(
7
-                'items' => array(
8
-                    'standard' => array(
9
-                        'template-body-list' => 'catalog/lists/items-body-list',
10
-                    ),
11
-                ),
12
-            ),
13
-        ),
14
-        'checkout' => array(
15
-            'standard' => array(
16
-                'address' => array(
17
-                    'countries' => array(
18
-                        'AD', // Andorra
19
-                        'AE', // United Arab Emirates
20
-                        'AF', // Afghanistan
21
-                        'AG', // Antigua and Barbuda
22
-                        'AI', // Anguilla
23
-                        'AL', // Albania
24
-                        'AM', // Armenia
25
-                        'AO', // Angola
26
-                        'AQ', // Antarctica
27
-                        'AR', // Argentina
28
-                        'AS', // American Samoa
29
-                        'AT', // Austria
30
-                        'AU', // Australia
31
-                        'AW', // Aruba
32
-                        'AX', // Åland Islands
33
-                        'AZ', // Azerbaijan
34
-                        'BA', // Bosnia and Herzegovina
35
-                        'BB', // Barbados
36
-                        'BD', // Bangladesh
37
-                        'BE', // Belgium
38
-                        'BF', // Burkina Faso
39
-                        'BG', // Bulgaria
40
-                        'BH', // Bahrain
41
-                        'BI', // Burundi
42
-                        'BJ', // Benin
43
-                        'BL', // Saint Barthélemy
44
-                        'BM', // Bermuda
45
-                        'BN', // Brunei Darussalam
46
-                        'BO', // Bolivia, Plurinational State of
47
-                        'BQ', // Bonaire, Sint Eustatius and Saba
48
-                        'BR', // Brazil
49
-                        'BS', // Bahamas
50
-                        'BT', // Bhutan
51
-                        'BV', // Bouvet Island
52
-                        'BW', // Botswana
53
-                        'BY', // Belarus
54
-                        'BZ', // Belize
55
-                        'CA', // Canada
56
-                        'CC', // Cocos (Keeling) Islands
57
-                        'CD', // Congo, the Democratic Republic of the
58
-                        'CF', // Central African Republic
59
-                        'CG', // Congo
60
-                        'CH', // Switzerland
61
-                        'CI', // Côte d'Ivoire
62
-                        'CK', // Cook Islands
63
-                        'CL', // Chile
64
-                        'CM', // Cameroon
65
-                        'CN', // China
66
-                        'CO', // Colombia
67
-                        'CR', // Costa Rica
68
-                        'CU', // Cuba
69
-                        'CV', // Cape Verde
70
-                        'CW', // Curaçao
71
-                        'CX', // Christmas Island
72
-                        'CY', // Cyprus
73
-                        'CZ', // Czech Republic
74
-                        'DE', // Germany
75
-                        'DJ', // Djibouti
76
-                        'DK', // Denmark
77
-                        'DM', // Dominica
78
-                        'DO', // Dominican Republic
79
-                        'DZ', // Algeria
80
-                        'EC', // Ecuador
81
-                        'EE', // Estonia
82
-                        'EG', // Egypt
83
-                        'EH', // Western Sahara
84
-                        'ER', // Eritrea
85
-                        'ES', // Spain
86
-                        'ET', // Ethiopia
87
-                        'FI', // Finland
88
-                        'FJ', // Fiji
89
-                        'FK', // Falkland Islands (Malvinas)
90
-                        'FM', // Micronesia, Federated States of
91
-                        'FO', // Faroe Islands
92
-                        'FR', // France
93
-                        'GA', // Gabon
94
-                        'GB', // United Kingdom
95
-                        'GD', // Grenada
96
-                        'GE', // Georgia
97
-                        'GF', // French Guiana
98
-                        'GG', // Guernsey
99
-                        'GH', // Ghana
100
-                        'GI', // Gibraltar
101
-                        'GL', // Greenland
102
-                        'GM', // Gambia
103
-                        'GN', // Guinea
104
-                        'GP', // Guadeloupe
105
-                        'GQ', // Equatorial Guinea
106
-                        'GR', // Greece
107
-                        'GS', // South Georgia and the South Sandwich Islands
108
-                        'GT', // Guatemala
109
-                        'GU', // Guam
110
-                        'GW', // Guinea-Bissau
111
-                        'GY', // Guyana
112
-                        'HK', // Hong Kong
113
-                        'HM', // Heard Island and McDonald Islands
114
-                        'HN', // Honduras
115
-                        'HR', // Croatia
116
-                        'HT', // Haiti
117
-                        'HU', // Hungary
118
-                        'ID', // Indonesia
119
-                        'IE', // Ireland
120
-                        'IL', // Israel
121
-                        'IM', // Isle of Man
122
-                        'IN', // India
123
-                        'IO', // British Indian Ocean Territory
124
-                        'IQ', // Iraq
125
-                        'IR', // Iran, Islamic Republic of
126
-                        'IS', // Iceland
127
-                        'IT', // Italy
128
-                        'JE', // Jersey
129
-                        'JM', // Jamaica
130
-                        'JO', // Jordan
131
-                        'JP', // Japan
132
-                        'KE', // Kenya
133
-                        'KG', // Kyrgyzstan
134
-                        'KH', // Cambodia
135
-                        'KI', // Kiribati
136
-                        'KM', // Comoros
137
-                        'KN', // Saint Kitts and Nevis
138
-                        'KP', // Korea, Democratic People's Republic of
139
-                        'KR', // Korea, Republic of
140
-                        'KW', // Kuwait
141
-                        'KY', // Cayman Islands
142
-                        'KZ', // Kazakhstan
143
-                        'LA', // Lao People's Democratic Republic
144
-                        'LB', // Lebanon
145
-                        'LC', // Saint Lucia
146
-                        'LI', // Liechtenstein
147
-                        'LK', // Sri Lanka
148
-                        'LR', // Liberia
149
-                        'LS', // Lesotho
150
-                        'LT', // Lithuania
151
-                        'LU', // Luxembourg
152
-                        'LV', // Latvia
153
-                        'LY', // Libya
154
-                        'MA', // Morocco
155
-                        'MC', // Monaco
156
-                        'MD', // Moldova, Republic of
157
-                        'ME', // Montenegro
158
-                        'MF', // Saint Martin (French part)
159
-                        'MG', // Madagascar
160
-                        'MH', // Marshall Islands
161
-                        'MK', // Macedonia
162
-                        'ML', // Mali
163
-                        'MM', // Myanmar
164
-                        'MN', // Mongolia
165
-                        'MO', // Macao
166
-                        'MP', // Northern Mariana Islands
167
-                        'MQ', // Martinique
168
-                        'MR', // Mauritania
169
-                        'MS', // Montserrat
170
-                        'MT', // Malta
171
-                        'MU', // Mauritius
172
-                        'MV', // Maldives
173
-                        'MW', // Malawi
174
-                        'MX', // Mexico
175
-                        'MY', // Malaysia
176
-                        'MZ', // Mozambique
177
-                        'NA', // Namibia
178
-                        'NC', // New Caledonia
179
-                        'NE', // Niger
180
-                        'NF', // Norfolk Island
181
-                        'NG', // Nigeria
182
-                        'NI', // Nicaragua
183
-                        'NL', // Netherlands
184
-                        'NO', // Norway
185
-                        'NP', // Nepal
186
-                        'NR', // Nauru
187
-                        'NU', // Niue
188
-                        'NZ', // New Zealand
189
-                        'OM', // Oman
190
-                        'PA', // Panama
191
-                        'PE', // Peru
192
-                        'PF', // French Polynesia
193
-                        'PG', // Papua New Guinea
194
-                        'PH', // Philippines
195
-                        'PK', // Pakistan
196
-                        'PL', // Poland
197
-                        'PM', // Saint Pierre and Miquelon
198
-                        'PN', // Pitcairn
199
-                        'PR', // Puerto Rico
200
-                        'PS', // Palestine, State of
201
-                        'PT', // Portugal
202
-                        'PW', // Palau
203
-                        'PY', // Paraguay
204
-                        'QA', // Qatar
205
-                        'RE', // Réunion
206
-                        'RO', // Romania
207
-                        'RS', // Serbia
208
-                        'RU', // Russian Federation
209
-                        'RW', // Rwanda
210
-                        'SA', // Saudi Arabia
211
-                        'SB', // Solomon Islands
212
-                        'SC', // Seychelles
213
-                        'SD', // Sudan
214
-                        'SE', // Sweden
215
-                        'SG', // Singapore
216
-                        'SH', // Saint Helena, Ascension and Tristan da Cunha
217
-                        'SI', // Slovenia
218
-                        'SJ', // Svalbard and Jan Mayen
219
-                        'SK', // Slovakia
220
-                        'SL', // Sierra Leone
221
-                        'SM', // San Marino
222
-                        'SN', // Senegal
223
-                        'SO', // Somalia
224
-                        'SR', // Suriname
225
-                        'SS', // South Sudan
226
-                        'ST', // Sao Tome and Principe
227
-                        'SV', // El Salvador
228
-                        'SX', // Sint Maarten (Dutch part)
229
-                        'SY', // Syrian Arab Republic
230
-                        'SZ', // Swaziland
231
-                        'TC', // Turks and Caicos Islands
232
-                        'TD', // Chad
233
-                        'TF', // French Southern Territories
234
-                        'TG', // Togo
235
-                        'TH', // Thailand
236
-                        'TJ', // Tajikistan
237
-                        'TK', // Tokelau
238
-                        'TL', // Timor-Leste
239
-                        'TM', // Turkmenistan
240
-                        'TN', // Tunisia
241
-                        'TO', // Tonga
242
-                        'TR', // Turkey
243
-                        'TT', // Trinidad and Tobago
244
-                        'TV', // Tuvalu
245
-                        'TW', // Taiwan
246
-                        'TZ', // Tanzania, United Republic of
247
-                        'UA', // Ukraine
248
-                        'UG', // Uganda
249
-                        'UM', // United States Minor Outlying Islands
250
-                        'US', // United States
251
-                        'UY', // Uruguay
252
-                        'UZ', // Uzbekistan
253
-                        'VA', // Vatican City State (Holy See)
254
-                        'VC', // Saint Vincent and the Grenadines
255
-                        'VE', // Venezuela, Bolivarian Republic of
256
-                        'VG', // Virgin Islands, British
257
-                        'VI', // Virgin Islands, U.S.
258
-                        'VN', // Viet Nam
259
-                        'VU', // Vanuatu
260
-                        'WF', // Wallis and Futuna
261
-                        'WS', // Samoa
262
-                        'YE', // Yemen
263
-                        'YT', // Mayotte
264
-                        'ZA', // South Africa
265
-                        'ZM', // Zambia
266
-                        'ZW', // Zimbabwe
267
-                    ),
268
-                ),
269
-            ),
270
-        ),
271
-    ),
4
+	'html' => array(
5
+		'catalog' => array(
6
+			'lists' => array(
7
+				'items' => array(
8
+					'standard' => array(
9
+						'template-body-list' => 'catalog/lists/items-body-list',
10
+					),
11
+				),
12
+			),
13
+		),
14
+		'checkout' => array(
15
+			'standard' => array(
16
+				'address' => array(
17
+					'countries' => array(
18
+						'AD', // Andorra
19
+						'AE', // United Arab Emirates
20
+						'AF', // Afghanistan
21
+						'AG', // Antigua and Barbuda
22
+						'AI', // Anguilla
23
+						'AL', // Albania
24
+						'AM', // Armenia
25
+						'AO', // Angola
26
+						'AQ', // Antarctica
27
+						'AR', // Argentina
28
+						'AS', // American Samoa
29
+						'AT', // Austria
30
+						'AU', // Australia
31
+						'AW', // Aruba
32
+						'AX', // Åland Islands
33
+						'AZ', // Azerbaijan
34
+						'BA', // Bosnia and Herzegovina
35
+						'BB', // Barbados
36
+						'BD', // Bangladesh
37
+						'BE', // Belgium
38
+						'BF', // Burkina Faso
39
+						'BG', // Bulgaria
40
+						'BH', // Bahrain
41
+						'BI', // Burundi
42
+						'BJ', // Benin
43
+						'BL', // Saint Barthélemy
44
+						'BM', // Bermuda
45
+						'BN', // Brunei Darussalam
46
+						'BO', // Bolivia, Plurinational State of
47
+						'BQ', // Bonaire, Sint Eustatius and Saba
48
+						'BR', // Brazil
49
+						'BS', // Bahamas
50
+						'BT', // Bhutan
51
+						'BV', // Bouvet Island
52
+						'BW', // Botswana
53
+						'BY', // Belarus
54
+						'BZ', // Belize
55
+						'CA', // Canada
56
+						'CC', // Cocos (Keeling) Islands
57
+						'CD', // Congo, the Democratic Republic of the
58
+						'CF', // Central African Republic
59
+						'CG', // Congo
60
+						'CH', // Switzerland
61
+						'CI', // Côte d'Ivoire
62
+						'CK', // Cook Islands
63
+						'CL', // Chile
64
+						'CM', // Cameroon
65
+						'CN', // China
66
+						'CO', // Colombia
67
+						'CR', // Costa Rica
68
+						'CU', // Cuba
69
+						'CV', // Cape Verde
70
+						'CW', // Curaçao
71
+						'CX', // Christmas Island
72
+						'CY', // Cyprus
73
+						'CZ', // Czech Republic
74
+						'DE', // Germany
75
+						'DJ', // Djibouti
76
+						'DK', // Denmark
77
+						'DM', // Dominica
78
+						'DO', // Dominican Republic
79
+						'DZ', // Algeria
80
+						'EC', // Ecuador
81
+						'EE', // Estonia
82
+						'EG', // Egypt
83
+						'EH', // Western Sahara
84
+						'ER', // Eritrea
85
+						'ES', // Spain
86
+						'ET', // Ethiopia
87
+						'FI', // Finland
88
+						'FJ', // Fiji
89
+						'FK', // Falkland Islands (Malvinas)
90
+						'FM', // Micronesia, Federated States of
91
+						'FO', // Faroe Islands
92
+						'FR', // France
93
+						'GA', // Gabon
94
+						'GB', // United Kingdom
95
+						'GD', // Grenada
96
+						'GE', // Georgia
97
+						'GF', // French Guiana
98
+						'GG', // Guernsey
99
+						'GH', // Ghana
100
+						'GI', // Gibraltar
101
+						'GL', // Greenland
102
+						'GM', // Gambia
103
+						'GN', // Guinea
104
+						'GP', // Guadeloupe
105
+						'GQ', // Equatorial Guinea
106
+						'GR', // Greece
107
+						'GS', // South Georgia and the South Sandwich Islands
108
+						'GT', // Guatemala
109
+						'GU', // Guam
110
+						'GW', // Guinea-Bissau
111
+						'GY', // Guyana
112
+						'HK', // Hong Kong
113
+						'HM', // Heard Island and McDonald Islands
114
+						'HN', // Honduras
115
+						'HR', // Croatia
116
+						'HT', // Haiti
117
+						'HU', // Hungary
118
+						'ID', // Indonesia
119
+						'IE', // Ireland
120
+						'IL', // Israel
121
+						'IM', // Isle of Man
122
+						'IN', // India
123
+						'IO', // British Indian Ocean Territory
124
+						'IQ', // Iraq
125
+						'IR', // Iran, Islamic Republic of
126
+						'IS', // Iceland
127
+						'IT', // Italy
128
+						'JE', // Jersey
129
+						'JM', // Jamaica
130
+						'JO', // Jordan
131
+						'JP', // Japan
132
+						'KE', // Kenya
133
+						'KG', // Kyrgyzstan
134
+						'KH', // Cambodia
135
+						'KI', // Kiribati
136
+						'KM', // Comoros
137
+						'KN', // Saint Kitts and Nevis
138
+						'KP', // Korea, Democratic People's Republic of
139
+						'KR', // Korea, Republic of
140
+						'KW', // Kuwait
141
+						'KY', // Cayman Islands
142
+						'KZ', // Kazakhstan
143
+						'LA', // Lao People's Democratic Republic
144
+						'LB', // Lebanon
145
+						'LC', // Saint Lucia
146
+						'LI', // Liechtenstein
147
+						'LK', // Sri Lanka
148
+						'LR', // Liberia
149
+						'LS', // Lesotho
150
+						'LT', // Lithuania
151
+						'LU', // Luxembourg
152
+						'LV', // Latvia
153
+						'LY', // Libya
154
+						'MA', // Morocco
155
+						'MC', // Monaco
156
+						'MD', // Moldova, Republic of
157
+						'ME', // Montenegro
158
+						'MF', // Saint Martin (French part)
159
+						'MG', // Madagascar
160
+						'MH', // Marshall Islands
161
+						'MK', // Macedonia
162
+						'ML', // Mali
163
+						'MM', // Myanmar
164
+						'MN', // Mongolia
165
+						'MO', // Macao
166
+						'MP', // Northern Mariana Islands
167
+						'MQ', // Martinique
168
+						'MR', // Mauritania
169
+						'MS', // Montserrat
170
+						'MT', // Malta
171
+						'MU', // Mauritius
172
+						'MV', // Maldives
173
+						'MW', // Malawi
174
+						'MX', // Mexico
175
+						'MY', // Malaysia
176
+						'MZ', // Mozambique
177
+						'NA', // Namibia
178
+						'NC', // New Caledonia
179
+						'NE', // Niger
180
+						'NF', // Norfolk Island
181
+						'NG', // Nigeria
182
+						'NI', // Nicaragua
183
+						'NL', // Netherlands
184
+						'NO', // Norway
185
+						'NP', // Nepal
186
+						'NR', // Nauru
187
+						'NU', // Niue
188
+						'NZ', // New Zealand
189
+						'OM', // Oman
190
+						'PA', // Panama
191
+						'PE', // Peru
192
+						'PF', // French Polynesia
193
+						'PG', // Papua New Guinea
194
+						'PH', // Philippines
195
+						'PK', // Pakistan
196
+						'PL', // Poland
197
+						'PM', // Saint Pierre and Miquelon
198
+						'PN', // Pitcairn
199
+						'PR', // Puerto Rico
200
+						'PS', // Palestine, State of
201
+						'PT', // Portugal
202
+						'PW', // Palau
203
+						'PY', // Paraguay
204
+						'QA', // Qatar
205
+						'RE', // Réunion
206
+						'RO', // Romania
207
+						'RS', // Serbia
208
+						'RU', // Russian Federation
209
+						'RW', // Rwanda
210
+						'SA', // Saudi Arabia
211
+						'SB', // Solomon Islands
212
+						'SC', // Seychelles
213
+						'SD', // Sudan
214
+						'SE', // Sweden
215
+						'SG', // Singapore
216
+						'SH', // Saint Helena, Ascension and Tristan da Cunha
217
+						'SI', // Slovenia
218
+						'SJ', // Svalbard and Jan Mayen
219
+						'SK', // Slovakia
220
+						'SL', // Sierra Leone
221
+						'SM', // San Marino
222
+						'SN', // Senegal
223
+						'SO', // Somalia
224
+						'SR', // Suriname
225
+						'SS', // South Sudan
226
+						'ST', // Sao Tome and Principe
227
+						'SV', // El Salvador
228
+						'SX', // Sint Maarten (Dutch part)
229
+						'SY', // Syrian Arab Republic
230
+						'SZ', // Swaziland
231
+						'TC', // Turks and Caicos Islands
232
+						'TD', // Chad
233
+						'TF', // French Southern Territories
234
+						'TG', // Togo
235
+						'TH', // Thailand
236
+						'TJ', // Tajikistan
237
+						'TK', // Tokelau
238
+						'TL', // Timor-Leste
239
+						'TM', // Turkmenistan
240
+						'TN', // Tunisia
241
+						'TO', // Tonga
242
+						'TR', // Turkey
243
+						'TT', // Trinidad and Tobago
244
+						'TV', // Tuvalu
245
+						'TW', // Taiwan
246
+						'TZ', // Tanzania, United Republic of
247
+						'UA', // Ukraine
248
+						'UG', // Uganda
249
+						'UM', // United States Minor Outlying Islands
250
+						'US', // United States
251
+						'UY', // Uruguay
252
+						'UZ', // Uzbekistan
253
+						'VA', // Vatican City State (Holy See)
254
+						'VC', // Saint Vincent and the Grenadines
255
+						'VE', // Venezuela, Bolivarian Republic of
256
+						'VG', // Virgin Islands, British
257
+						'VI', // Virgin Islands, U.S.
258
+						'VN', // Viet Nam
259
+						'VU', // Vanuatu
260
+						'WF', // Wallis and Futuna
261
+						'WS', // Samoa
262
+						'YE', // Yemen
263
+						'YT', // Mayotte
264
+						'ZA', // South Africa
265
+						'ZM', // Zambia
266
+						'ZW', // Zimbabwe
267
+					),
268
+				),
269
+			),
270
+		),
271
+	),
272 272
 );
Please login to merge, or discard this patch.
client/html/tests/Client/Html/Basket/Mini/StandardTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -156,8 +156,8 @@
 block discarded – undo
156 156
 
157 157
 
158 158
 	/**
159
-	* @param string $code
160
-	*/
159
+	 * @param string $code
160
+	 */
161 161
 	protected function getProductItem( $code )
162 162
 	{
163 163
 		$manager = \Aimeos\MShop\Product\Manager\Factory::create( $this->context );
Please login to merge, or discard this patch.