Move UserGroupBackend class to Icinga\Authentication\UserGroup

refs #8826
This commit is contained in:
Johannes Meyer 2015-04-21 12:32:18 +02:00
parent d3964a31fb
commit 8058eb0215
4 changed files with 4 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;