. */ namespace OC\Files\Cache; /** * check the storage backends for updates and change the cache accordingly */ class Shared_Watcher extends Watcher { /** * check $path for updates * * @param string $path */ public function checkUpdate($path) { if ($path != '') { parent::checkUpdate($path); } } /** * remove deleted files in $path from the cache * * @param string $path */ public function cleanFolder($path) { if ($path != '') { parent::cleanFolder($path); } } }