Programming Language PHP
Namespace Elabftw\Elabftw
Class FsTools
Method/Function deleteCache
Total Examples 1
1 code examples of PHP Elabftw\Elabftw\FsTools::deleteCache extracted from open source projects
protected function execute(InputInterface $input, OutputInterface $output)
{
if ($output->isVerbose()) {
$output->writeln(array(
'Clearing cache',
'==============',
));
}
FsTools::deleteCache();
if ($output->isVerbose()) {
$output->writeln('Cache cleared!');
}
return 0;
}