Files
b2b.redline.com.pl/modules/ps_accounts/upgrade/upgrade-4.0.0.php
2025-06-24 14:14:35 +02: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;
}