mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
9 lines
136 B
PHP
9 lines
136 B
PHP
<?php
|
|
|
|
namespace OC\Cache;
|
|
|
|
class FileGlobalGC extends \OC\BackgroundJob\Job{
|
|
public function run($argument){
|
|
FileGlobal::gc();
|
|
}
|
|
}
|