Skip to content

Commit 21f1ebd

Browse files
committed
MAGETWO-35411: [GITHUB] Incorrect use of implode() #1116
1 parent 2ef463d commit 21f1ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Tax/Setup/InstallData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function install(ModuleDataSetupInterface $setup, ModuleContextInterface
6969
'visible_in_advanced_search' => true,
7070
'used_in_product_listing' => true,
7171
'unique' => false,
72-
'apply_to' => implode($taxSetup->getTaxableItems(), ',')
72+
'apply_to' => implode(',', $taxSetup->getTaxableItems())
7373
]
7474
);
7575

0 commit comments

Comments
 (0)