mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Fixes psalm error.
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
This commit is contained in:
parent
468aefc649
commit
73b7096850
1 changed files with 2 additions and 2 deletions
|
|
@ -38,6 +38,7 @@ use OC\Authentication\Login\Chain;
|
|||
use OC\Authentication\Login\LoginData;
|
||||
use OC\Authentication\WebAuthn\Manager as WebAuthnManager;
|
||||
use OC\Security\Bruteforce\Throttler;
|
||||
use OC\User\Session;
|
||||
use OC_App;
|
||||
use OCP\AppFramework\Controller;
|
||||
use OCP\AppFramework\Http;
|
||||
|
|
@ -54,7 +55,6 @@ use OCP\ISession;
|
|||
use OCP\IURLGenerator;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserManager;
|
||||
use OCP\IUserSession;
|
||||
use OCP\Notification\IManager;
|
||||
use OCP\Util;
|
||||
|
||||
|
|
@ -67,7 +67,7 @@ class LoginController extends Controller {
|
|||
private IUserManager $userManager,
|
||||
private IConfig $config,
|
||||
private ISession $session,
|
||||
private IUserSession $userSession,
|
||||
private Session $userSession,
|
||||
private IURLGenerator $urlGenerator,
|
||||
private Defaults $defaults,
|
||||
private Throttler $throttler,
|
||||
|
|
|
|||
Loading…
Reference in a new issue