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

github.com/nextcloud/files_antivirus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-09-29 18:05:58 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-09-29 18:05:58 +0300
commitba3350652902454504197fb4f38097dacaeab48b (patch)
treedfb2595eeed58cd3508d401f7af7b8137423cc5b
parent9c0a6081fcd998a7d97a0cbabeb0f164bfa90cf3 (diff)
Move to OCP\BackgroundJob\TimedJob
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r--lib/BackgroundJob/BackgroundScanner.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/BackgroundJob/BackgroundScanner.php b/lib/BackgroundJob/BackgroundScanner.php
index 36ab7c4..3a99b1f 100644
--- a/lib/BackgroundJob/BackgroundScanner.php
+++ b/lib/BackgroundJob/BackgroundScanner.php
@@ -13,6 +13,7 @@ namespace OCA\Files_Antivirus\BackgroundJob;
use OCA\Files_Antivirus\AppConfig;
use OCA\Files_Antivirus\ItemFactory;
use OCA\Files_Antivirus\Scanner\ScannerFactory;
+use OCP\BackgroundJob\TimedJob;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\Files\File;
use OCP\Files\IMimeTypeLoader;
@@ -20,7 +21,6 @@ use OCP\Files\IRootFolder;
use OCP\IDBConnection;
use OCP\IUser;
use OCP\IUserManager;
-use OC\BackgroundJob\TimedJob;
use Psr\Log\LoggerInterface;
class BackgroundScanner extends TimedJob {