Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fileglobalgc.php « cache « private « lib - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 399dd5e6f9468f5595596fd9d64a87d988628779 (plain)
1
2
3
4
5
6
7
8
9
<?php

namespace OC\Cache;

class FileGlobalGC extends \OC\BackgroundJob\Job{
	public function run($argument){
		FileGlobal::gc();
	}
}