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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-02-22 13:24:38 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-02-22 15:55:06 +0300
commitc01eb0775648bd54e9cd4904499a30f448554968 (patch)
treec06b619b4af515e48db263af4d82cee18473ba31 /apps/federatedfilesharing
parenta6bc871c96d071ef54d9fd3b547df606fa9d19ca (diff)
Mark DAV background jobs as time sensitive/insensitive
* As a bonus they are now all using OCP base classes * Strict typing is now enforced Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/federatedfilesharing')
-rw-r--r--apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php b/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php
index f631abaabe0..cf0691de3ac 100644
--- a/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php
+++ b/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php
@@ -56,8 +56,8 @@ class RetryJob extends Job {
public function __construct(Notifications $notifications,
- ITimeFactory $timeFactory) {
- parent::__construct($timeFactory);
+ ITimeFactory $time) {
+ parent::__construct($time);
$this->notifications = $notifications;
}