From f6446a64b62e964e043995f6bfeb2118a7dc489a Mon Sep 17 00:00:00 2001
From: Thomas Müller <thomas.mueller@tmit.eu>
Date: Thu, 19 Nov 2015 17:10:42 +0100
Subject: fixing OCI and others

---
 apps/federation/api/ocsauthapi.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'apps/federation/api/ocsauthapi.php')

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
 	) {
-- 
cgit v1.2.3