moduleDataSetup = $moduleDataSetup; $this->customerSetupFactory = $customerSetupFactory; } /** * {@inheritdoc} */ public function apply() { $customerSetup = $this->customerSetupFactory->create(['resourceConnection' => $this->moduleDataSetup]); $customerSetup->updateAttribute('customer_address', 'vat_id', 'frontend_label', 'VAT Number'); } /** * {@inheritdoc} */ public static function getDependencies() { return [ ConvertValidationRulesFromSerializedToJson::class, ]; } /** * {@inheritdoc} */ public static function getVersion() { return '2.0.12'; } /** * {@inheritdoc} */ public function getAliases() { return []; } }