diff options
author | ringmaster <epithet@gmail.com> | 2014-05-28 07:59:38 -0400 |
---|---|---|
committer | ringmaster <epithet@gmail.com> | 2014-05-28 07:59:38 -0400 |
commit | 3d1ba574e430d14c9215d889e47b07c05b3429d9 (patch) | |
tree | 5ba98335ecdb5da84ad82b4dea51591e45470082 /lib | |
parent | 09645b92218075a984277c7f081fb4caa5b3c09b (diff) | |
download | nextcloud-server-3d1ba574e430d14c9215d889e47b07c05b3429d9.tar.gz nextcloud-server-3d1ba574e430d14c9215d889e47b07c05b3429d9.zip |
Change visibility of scanner internals
so that descendant classes can access them.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/cache/scanner.php | 8 |
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; |