[Pkg-owncloud-commits] [owncloud] 84/199: Change visibility of scanner internals
David Prévot
taffit at moszumanska.debian.org
Sun Jun 1 18:53:12 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 3d1ba574e430d14c9215d889e47b07c05b3429d9
Author: ringmaster <epithet at gmail.com>
Date: Wed May 28 07:59:38 2014 -0400
Change visibility of scanner internals
so that descendant classes can access them.
---
lib/private/files/cache/scanner.php | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index b3ab94f..61b22ea 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;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list