Files
prestashop/modules/ps_accounts/upgrade/upgrade-7.1.2.php

19 lines
375 B
PHP
Raw Normal View History

<?php
/**
* @param Ps_accounts $module
*
* @return bool
*
* @throws Exception
* @throws Throwable
*/
function upgrade_module_7_1_2($module)
{
// FIXME: harmless to let those files untouched
// array_map('unlink', [
// $module->getLocalPath() . '/config/config.yml',
// $module->getLocalPath() . '/config/command.yml',
// ]);
return true;
}