aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Background/JobBase.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/Background/JobBase.php')
-rw-r--r--core/Command/Background/JobBase.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/Command/Background/JobBase.php b/core/Command/Background/JobBase.php
index 4385783a7ee..94c9e1611ea 100644
--- a/core/Command/Background/JobBase.php
+++ b/core/Command/Background/JobBase.php
@@ -35,8 +35,10 @@ abstract class JobBase extends \OC\Core\Command\Base {
protected IJobList $jobList;
protected LoggerInterface $logger;
- public function __construct(IJobList $jobList,
- LoggerInterface $logger) {
+ public function __construct(
+ IJobList $jobList,
+ LoggerInterface $logger
+ ) {
parent::__construct();
$this->jobList = $jobList;
$this->logger = $logger;