mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-17 12:20:10 +02:00
- remove Storable inheritance from User and make it a plain DAO - remove Authorization methods from User refs #4265 refs #4250
13 lines
230 B
PHP
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);
|
|
}
|