Merge pull request #1879 from nextcloud/fix-missing-import

Import the used classes
This commit is contained in:
Roeland Jago Douma 2016-10-24 21:12:24 +02:00 committed by GitHub
commit 4d01f23978
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,7 @@ namespace OCA\Files_Sharing;
use OC\Files\Filesystem;
use OC\Files\Cache\FailedCache;
use OC\Files\Storage\FailedStorage;
use OCP\Constants;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\NotFoundException;
@ -170,6 +171,8 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
if (!$this->file_exists($path)) {
return false;
}
/** @var IStorage $storage */
/** @var string $internalPath */
list($storage, $internalPath) = $this->resolvePath($path);
return $storage->isReadable($internalPath);
}