/**
* @deprecated in 5.6, will be private in 5.8
*
* Iterates the given data array and persists all config variables
*/
public function saveConfigData(array
$data) { trigger_error(sprintf('%s:%s is deprecated since Shopware 5.6 and will be private with 5.8.', __CLASS__, __METHOD__
), E_USER_DEPRECATED
);
foreach ($data as $values) { foreach ($values as $configKey =>
$value) { $this->
saveConfig($configKey,
$value);
} } } /**
* @deprecated in 5.6, will be private in 5.8
*
* General helper method which triggers the prepare...ConfigForSaving methods
*
* @param array $data
*
* @return array
*/