Move UserGroupBackend to Icinga\Authentication\User

refs #8826
This commit is contained in:
Johannes Meyer 2015-04-21 12:42:21 +02:00
parent b51ce9c7ab
commit 39473e8939
5 changed files with 5 additions and 4 deletions

View File

@ -5,6 +5,7 @@ namespace Icinga\Authentication;
use Iterator;
use Icinga\Data\ConfigObject;
use Icinga\Authentication\User\UserBackend;
use Icinga\Application\Config;
use Icinga\Application\Logger;
use Icinga\Exception\ConfigurationError;

View File

@ -4,7 +4,7 @@
namespace Icinga\Authentication\Backend;
use PDO;
use Icinga\Authentication\UserBackend;
use Icinga\Authentication\User\UserBackend;
use Icinga\Data\Db\DbConnection;
use Icinga\User;
use Icinga\Exception\AuthenticationException;

View File

@ -3,7 +3,7 @@
namespace Icinga\Authentication\Backend;
use Icinga\Authentication\UserBackend;
use Icinga\Authentication\User\UserBackend;
use Icinga\Data\ConfigObject;
use Icinga\User;

View File

@ -4,7 +4,7 @@
namespace Icinga\Authentication\Backend;
use Icinga\User;
use Icinga\Authentication\UserBackend;
use Icinga\Authentication\User\UserBackend;
use Icinga\Protocol\Ldap\Query;
use Icinga\Protocol\Ldap\Connection;
use Icinga\Exception\AuthenticationException;

View File

@ -1,7 +1,7 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Authentication;
namespace Icinga\Authentication\User;
use Countable;
use Icinga\Authentication\Backend\ExternalBackend;