Files
espocrm/data/.backup/extensions/68e4bf9062a049ac3/scripts/AfterInstall.php
2026-01-19 17:46:06 +01:00

21 lines
344 B
PHP

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