Merge pull request #3240 from nextcloud/storage-interface-tweaks

minor storage interface tweaks
pull/3252/head
Christoph Wurst 2017-01-25 08:52:32 +07:00 committed by GitHub
commit 933fd9c94d
2 changed files with 3 additions and 2 deletions

@ -32,6 +32,7 @@ interface IScanner {
const SCAN_RECURSIVE = true;
const SCAN_SHALLOW = false;
const REUSE_NONE = 0;
const REUSE_ETAG = 1;
const REUSE_SIZE = 2;

@ -383,7 +383,7 @@ interface IStorage {
public function verifyPath($path, $fileName);
/**
* @param \OCP\Files\Storage $sourceStorage
* @param \OCP\Files\Storage|\OCP\Files\Storage\IStorage $sourceStorage
* @param string $sourceInternalPath
* @param string $targetInternalPath
* @return bool
@ -392,7 +392,7 @@ interface IStorage {
public function copyFromStorage(\OCP\Files\Storage $sourceStorage, $sourceInternalPath, $targetInternalPath);
/**
* @param \OCP\Files\Storage $sourceStorage
* @param \OCP\Files\Storage|\OCP\Files\Storage\IStorage $sourceStorage
* @param string $sourceInternalPath
* @param string $targetInternalPath
* @return bool