16 lines
386 B
PHP
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;
|
|
}
|