21 lines
344 B
PHP
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) {}
|
|
}
|
|
}
|