mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 19:29:00 +02:00
Add all untested files from incubator's library/Icinga to working tree library/Icinga refs #4257
29 lines
414 B
PHP
29 lines
414 B
PHP
<?php
|
|
|
|
namespace Icinga\Authentication;
|
|
|
|
class UserBackend
|
|
{
|
|
protected $config;
|
|
|
|
public function __construct($config)
|
|
{
|
|
$this->config = $config;
|
|
$this->init();
|
|
}
|
|
|
|
protected function init()
|
|
{
|
|
}
|
|
|
|
public function hasUsername($username)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function authenticate($username, $password = null)
|
|
{
|
|
return false;
|
|
}
|
|
}
|