diff options
Diffstat (limited to 'apps/federation/api/ocsauthapi.php')
-rw-r--r-- | apps/federation/api/ocsauthapi.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/federation/api/ocsauthapi.php b/apps/federation/api/ocsauthapi.php index 3279ae1dd7b..42d7113820d 100644 --- a/apps/federation/api/ocsauthapi.php +++ b/apps/federation/api/ocsauthapi.php @@ -22,10 +22,10 @@ namespace OCA\Federation\API; -use OC\BackgroundJob\JobList; use OCA\Federation\DbHandler; use OCA\Federation\TrustedServers; use OCP\AppFramework\Http; +use OCP\BackgroundJob\IJobList; use OCP\IRequest; use OCP\Security\ISecureRandom; use OCP\Security\StringUtils; @@ -45,7 +45,7 @@ class OCSAuthAPI { /** @var ISecureRandom */ private $secureRandom; - /** @var JobList */ + /** @var IJobList */ private $jobList; /** @var TrustedServers */ @@ -55,18 +55,18 @@ class OCSAuthAPI { private $dbHandler; /** - * AuthController constructor. + * OCSAuthAPI constructor. * * @param IRequest $request * @param ISecureRandom $secureRandom - * @param JobList $jobList + * @param IJobList $jobList * @param TrustedServers $trustedServers * @param DbHandler $dbHandler */ public function __construct( IRequest $request, ISecureRandom $secureRandom, - JobList $jobList, + IJobList $jobList, TrustedServers $trustedServers, DbHandler $dbHandler ) { |