diff options
Diffstat (limited to 'lib/public/files/cache/iupdater.php')
-rw-r--r-- | lib/public/files/cache/iupdater.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/public/files/cache/iupdater.php b/lib/public/files/cache/iupdater.php index 074447cc9ed..241cd8636a1 100644 --- a/lib/public/files/cache/iupdater.php +++ b/lib/public/files/cache/iupdater.php @@ -20,7 +20,8 @@ */ namespace OCP\Files\Cache; -use OCP\Files\Storage; + +use OCP\Files\Storage\IStorage; /** * Update the cache and propagate changes @@ -65,10 +66,10 @@ interface IUpdater { /** * Rename a file or folder in the cache and update the size, etag and mtime of the parent folders * - * @param \OCP\Files\Storage $sourceStorage + * @param IStorage $sourceStorage * @param string $source * @param string $target * @since 9.0.0 */ - public function renameFromStorage(Storage $sourceStorage, $source, $target); + public function renameFromStorage(IStorage $sourceStorage, $source, $target); } |