Move UserGroupBackend class to Icinga\Authentication\UserGroup
refs #8826
This commit is contained in:
parent
d3964a31fb
commit
8058eb0215
|
@ -3,7 +3,7 @@
|
|||
|
||||
namespace Icinga\Authentication\Backend;
|
||||
|
||||
use Icinga\Authentication\UserGroupBackend;
|
||||
use Icinga\Authentication\UserGroup\UserGroupBackend;
|
||||
use Icinga\Data\Db\DbConnection;
|
||||
use Icinga\User;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
namespace Icinga\Authentication\Backend;
|
||||
|
||||
use Icinga\Application\Config;
|
||||
use Icinga\Authentication\UserGroupBackend;
|
||||
use Icinga\Authentication\UserGroup\UserGroupBackend;
|
||||
use Icinga\Exception\ConfigurationError;
|
||||
use Icinga\User;
|
||||
use Icinga\Util\String;
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
namespace Icinga\Authentication;
|
||||
|
||||
use Exception;
|
||||
use Icinga\Authentication\Usergroup\UserGroupBackend;
|
||||
use Icinga\Application\Config;
|
||||
use Icinga\Exception\IcingaException;
|
||||
use Icinga\Exception\NotReadableError;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Authentication;
|
||||
namespace Icinga\Authentication\UserGroup;
|
||||
|
||||
use Icinga\Authentication\Backend\DbUserGroupBackend;
|
||||
use Icinga\Authentication\Backend\IniUserGroupBackend;
|
Loading…
Reference in New Issue