moduleDataSetup = $moduleDataSetup; } /** * {@inheritdoc} */ public function apply() { $this->moduleDataSetup->getConnection()->update( $this->moduleDataSetup->getTable('core_config_data'), ['path' => \Magento\Customer\Model\Form::XML_PATH_ENABLE_AUTOCOMPLETE], ['path = ?' => 'general/restriction/autocomplete_on_storefront'] ); } /** * {@inheritdoc} */ public static function getDependencies() { return [ AddSecurityTrackingAttributes::class, ]; } /** * {@inheritdoc} */ public static function getVersion() { return '2.0.8'; } /** * {@inheritdoc} */ public function getAliases() { return []; } }