1
0
Fork 0

Made DatabaseAuth a valid, yet non-working authenticator

This commit is contained in:
Gergely POLONKAI 2012-11-04 14:12:03 +01:00
parent b52fc4c054
commit a430ace9c0
1 changed files with 25 additions and 0 deletions

View File

@ -6,4 +6,29 @@ use SmsGateway\LoggerInterface;
class DatabaseAuth implements AuthInterface
{
private $logger;
public function __construct(LoggerInterface $logger) {
throw new \Exception("This authenticator is not implemented yet!");
}
public function isTokenValid($token, $ip, $sessionId) {
return false;
}
public function getToken($username, $ip, $sessionId) {
return null;
}
public function removeToken($token, $ip, $sessionId) {
return true;
}
public function getLogger() {
return $this->logger;
}
public function setLogger(LoggerInterface $logger) {
$this->logger = $logger;
}
}