This commit is contained in:
2026-02-08 21:43:11 +01:00
parent 45b32a5ee2
commit 58947ad589
33 changed files with 3262 additions and 1597 deletions

View File

@@ -0,0 +1,18 @@
<?php
use Empik\Marketplace\Cache\CacheClearer;
if (!defined('_PS_VERSION_')) {
exit;
}
/**
* @param EmpikMarketplace $object
* @return bool
*/
function upgrade_module_1_1_3($object)
{
(new CacheClearer($object))->clear();
return true;
}