summaryrefslogtreecommitdiff
path: root/core/classes/authenticator/UserManagerInterface.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-13 02:22:07 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-13 02:22:07 +0200
commitd9167fb5318d5370ba5445e94c0e0f9b64341df4 (patch)
treee624d80cd4d7ab040214ef85cfbaef31dbbb970d /core/classes/authenticator/UserManagerInterface.php
parent33266244e8c75c29f31dd5dce756e55fb10a0b9b (diff)
downloadclassroom-d9167fb5318d5370ba5445e94c0e0f9b64341df4.tar.gz
classroom-d9167fb5318d5370ba5445e94c0e0f9b64341df4.tar.bz2
classroom-d9167fb5318d5370ba5445e94c0e0f9b64341df4.zip
authentication skeleton
Diffstat (limited to 'core/classes/authenticator/UserManagerInterface.php')
-rw-r--r--core/classes/authenticator/UserManagerInterface.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/core/classes/authenticator/UserManagerInterface.php b/core/classes/authenticator/UserManagerInterface.php
deleted file mode 100644
index ef120c1..0000000
--- a/core/classes/authenticator/UserManagerInterface.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-// namespace DevCoder\Authentication\Core;
-//
-// use DevCoder\Authentication\Token\UserTokenInterface;
-// use DevCoder\Authentication\UserInterface;
-
-interface UserManagerInterface
-{
- public function getUserToken(): ?UserTokenInterface;
-
- public function hasUserToken(): bool;
-
- public function createUserToken(UserInterface $user): UserTokenInterface;
-
- public function logout(): void;
-
- public function cryptPassword(string $plainPassword): string;
-
- public function isPasswordValid(UserInterface $user, string $plainPassword): bool;
-}