diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-12-02 15:14:40 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-01-14 12:54:42 +0100 |
commit | a3d50ef49a4c7183086398133793d4788bbf7901 (patch) | |
tree | 3b4ac6b3db3a2b0b56de5088017e4810324db009 /apps/files_sharing | |
parent | c27894791ebc2174cad82dc4039e8bb343114c50 (diff) | |
download | nextcloud-server-a3d50ef49a4c7183086398133793d4788bbf7901.tar.gz nextcloud-server-a3d50ef49a4c7183086398133793d4788bbf7901.zip |
add watcher interface
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/watcher.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php index 9a8968f2265..5b4736c21e1 100644 --- a/apps/files_sharing/lib/watcher.php +++ b/apps/files_sharing/lib/watcher.php @@ -24,6 +24,7 @@ */ namespace OC\Files\Cache; +use OCP\Files\Cache\ICacheEntry; /** * check the storage backends for updates and change the cache accordingly @@ -38,7 +39,7 @@ class Shared_Watcher extends Watcher { * Update the cache for changes to $path * * @param string $path - * @param array $cachedData + * @param ICacheEntry $cachedData */ public function update($path, $cachedData) { parent::update($path, $cachedData); |