summaryrefslogtreecommitdiffstats
path: root/lib/cache/fileglobalgc.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cache/fileglobalgc.php')
-rw-r--r--lib/cache/fileglobalgc.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/cache/fileglobalgc.php b/lib/cache/fileglobalgc.php
new file mode 100644
index 00000000000..a29c31f9063
--- /dev/null
+++ b/lib/cache/fileglobalgc.php
@@ -0,0 +1,8 @@
+<?php
+
+
+class OC_Cache_FileGlobalGC extends \OC\BackgroundJob\Job{
+ public function run($argument){
+ OC_Cache_FileGlobal::gc();
+ }
+}