summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-03-04 16:11:52 +0100
committerJoas Schilling <nickvergessen@owncloud.com>2015-03-04 16:11:52 +0100
commit00d0120e221be036c2f8f7d1bc15312af636a5fa (patch)
tree8ff05a8c7ca46d3e80bfc096dceda3555b73da08 /lib/private
parent3672ec39dd045a751e2d7cde5d08a7d9ebd8a2cf (diff)
downloadnextcloud-server-00d0120e221be036c2f8f7d1bc15312af636a5fa.tar.gz
nextcloud-server-00d0120e221be036c2f8f7d1bc15312af636a5fa.zip
Fix method signature for stable8
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/files/objectstore/noopscanner.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/private/files/objectstore/noopscanner.php b/lib/private/files/objectstore/noopscanner.php
index 7750a8d5529..c5b6f00ccea 100644
--- a/lib/private/files/objectstore/noopscanner.php
+++ b/lib/private/files/objectstore/noopscanner.php
@@ -33,11 +33,9 @@ class NoopScanner extends Scanner {
*
* @param string $file
* @param int $reuseExisting
- * @param int $parentId
- * @param array|null $cacheData existing data in the cache for the file to be scanned
* @return array an array of metadata of the scanned file
*/
- public function scanFile($file, $reuseExisting = 0, $parentId = -1, $cacheData = null) {
+ public function scanFile($file, $reuseExisting = 0) {
return array();
}
@@ -59,10 +57,9 @@ class NoopScanner extends Scanner {
* @param string $path
* @param bool $recursive
* @param int $reuse
- * @param array $folderData existing cache data for the folder to be scanned
* @return int the size of the scanned folder or -1 if the size is unknown at this stage
*/
- protected function scanChildren($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1, $folderData = null) {
+ public function scanChildren($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) {
return 0;
}