Files
wyczarujprezent.pl/modules/ps_accounts/upgrade/upgrade-4.0.0.php
2024-10-28 22:14:22 +01:00

16 lines
386 B
PHP

<?php
/**
* @param Ps_accounts $module
*/
function upgrade_module_4_0_0($module)
{
/** @var \PrestaShop\Module\PsAccounts\Installer\Installer $moduleInstaller */
$moduleInstaller = $module->getService(\PrestaShop\Module\PsAccounts\Installer\Installer::class);
// Ignore fail on ps_eventbus install
$moduleInstaller->installModule('ps_eventbus');
return true;
}