Skip to content

Commit 20082f2

Browse files
1196: Fixed customer EAV attribute generation for Magento 2.4.4
1 parent adfae0d commit 20082f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/fileTemplates/internal/Magento Customer Eav Attribute Data Patch Class.php.ft

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ${CLASS_NAME} implements ${IMPLEMENTS}
7777
$eavSetup->addAttributeToSet(
7878
${CUSTOMER_METADATA_INTERFACE}::ENTITY_TYPE_CUSTOMER,
7979
${CUSTOMER_METADATA_INTERFACE}::ATTRIBUTE_SET_ID_CUSTOMER,
80-
null,
80+
'Default',
8181
'${ATTRIBUTE_CODE}'
8282
);
8383

testData/actions/generation/generator/CustomerAttributeSetupPatchGenerator/generateMultiselectAttributeDataPatch/AddMultiselectTestCustomerAttribute.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function apply()
9696
$eavSetup->addAttributeToSet(
9797
CustomerMetadataInterface::ENTITY_TYPE_CUSTOMER,
9898
CustomerMetadataInterface::ATTRIBUTE_SET_ID_CUSTOMER,
99-
null,
99+
'Default',
100100
'multiselect_test'
101101
);
102102

0 commit comments

Comments
 (0)