aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoricewind1991 <robin@icewind.nl>2014-05-28 15:59:57 +0200
committericewind1991 <robin@icewind.nl>2014-05-28 15:59:57 +0200
commit6d57e4c491aa8e09ff20f7ef9e2fb5618f75de48 (patch)
tree5ba98335ecdb5da84ad82b4dea51591e45470082
parent09645b92218075a984277c7f081fb4caa5b3c09b (diff)
parent3d1ba574e430d14c9215d889e47b07c05b3429d9 (diff)
downloadnextcloud-server-6d57e4c491aa8e09ff20f7ef9e2fb5618f75de48.tar.gz
nextcloud-server-6d57e4c491aa8e09ff20f7ef9e2fb5618f75de48.zip
Merge pull request #8768 from owncloud/scanner_visibility
Change visibility of scanner internals
-rw-r--r--lib/private/files/cache/scanner.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index b3ab94f4599..61b22ea75a0 100644
--- a/lib/private/files/cache/scanner.php
+++ b/lib/private/files/cache/scanner.php
@@ -26,22 +26,22 @@ class Scanner extends BasicEmitter {
/**
* @var \OC\Files\Storage\Storage $storage
*/
- private $storage;
+ protected $storage;
/**
* @var string $storageId
*/
- private $storageId;
+ protected $storageId;
/**
* @var \OC\Files\Cache\Cache $cache
*/
- private $cache;
+ protected $cache;
/**
* @var \OC\Files\Cache\Permissions $permissionsCache
*/
- private $permissionsCache;
+ protected $permissionsCache;
const SCAN_RECURSIVE = true;
const SCAN_SHALLOW = false;