Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2021-11-17 18:44:11 +0300
committerRobin Appelman <robin@icewind.nl>2021-12-02 19:43:16 +0300
commite95745c074c6d04cd271706a836eccbcc674cca8 (patch)
tree542c0862ba4d6bd72162b75b27a9eb18bc476d56 /apps/files/lib
parentdb2dcbfe132ffdbf7aced0905d9dec9ad09e26c2 (diff)
fix tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files/lib')
-rw-r--r--apps/files/lib/BackgroundJob/ScanFiles.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/files/lib/BackgroundJob/ScanFiles.php b/apps/files/lib/BackgroundJob/ScanFiles.php
index 250338e1262..84846b9b55d 100644
--- a/apps/files/lib/BackgroundJob/ScanFiles.php
+++ b/apps/files/lib/BackgroundJob/ScanFiles.php
@@ -30,7 +30,6 @@ use OCP\EventDispatcher\IEventDispatcher;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\ILogger;
-use OCP\IUserManager;
/**
* Class ScanFiles is a background job used to run the file scanner over the user
@@ -57,10 +56,10 @@ class ScanFiles extends \OC\BackgroundJob\TimedJob {
* @param IDBConnection $connection
*/
public function __construct(
- IConfig $config,
+ IConfig $config,
IEventDispatcher $dispatcher,
- ILogger $logger,
- IDBConnection $connection
+ ILogger $logger,
+ IDBConnection $connection
) {
// Run once per 10 minutes
$this->setInterval(60 * 10);