Jannis Moßhammer db61cfafe1 Update and test Auth/Manager implementation
- remove Storable inheritance from User and make it a plain DAO
- remove Authorization methods from User

refs #4265
refs #4250
2013-06-11 13:32:33 +02:00

13 lines
230 B
PHP

<?php
namespace Icinga\Authentication;
interface UserBackend
{
public function __construct($config);
public function hasUsername(Credentials $credentials);
public function authenticate(Credentials $credentials);
}