Change visibility of scanner internals

so that descendant classes can access them.
This commit is contained in:
ringmaster 2014-05-28 07:59:38 -04:00
parent 09645b9221
commit 3d1ba574e4
1 changed files with 4 additions and 4 deletions

View File

@ -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;