Skip to content

Commit

Permalink
use public API of QueuedJob
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <[email protected]>
  • Loading branch information
blizzz committed Oct 11, 2022
1 parent 40dd91b commit 640372d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/Jobs/MigrateGroups.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

namespace OCA\User_SAML\Jobs;

use OC\BackgroundJob\QueuedJob;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\QueuedJob;
use OC\Group\Database;
use OCA\User_SAML\GroupBackend;
use OCA\User_SAML\GroupManager;
Expand Down Expand Up @@ -58,8 +59,10 @@ public function __construct(
IGroupManager $groupManager,
IDBConnection $dbc,
GroupBackend $ownGroupBackend,
LoggerInterface $logger
LoggerInterface $logger,
ITimeFactory $timeFactory
) {
parent::__construct($timeFactory);
$this->config = $config;
$this->groupManager = $groupManager;
$this->dbc = $dbc;
Expand Down

0 comments on commit 640372d

Please sign in to comment.