]> source.dussan.org Git - nextcloud-server.git/commitdiff
Change visibility of scanner internals
authorringmaster <epithet@gmail.com>
Wed, 28 May 2014 11:59:38 +0000 (07:59 -0400)
committerringmaster <epithet@gmail.com>
Wed, 28 May 2014 11:59:38 +0000 (07:59 -0400)
so that descendant classes can access them.

lib/private/files/cache/scanner.php

index b3ab94f459977ab3d03a3c4f13265fc699f588a8..61b22ea75a0b072f9a64ed919ed6922a946e369d 100644 (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;