Files
2026-01-19 17:46:06 +01:00

21 lines
346 B
PHP

<?php
class AfterUninstall
{
protected $container;
public function run($container)
{
$this->container = $container;
$this->clearCache();
}
protected function clearCache()
{
try {
$this->container->get('dataManager')->clearCache();
} catch (\Exception $e) {
}
}
}