Move Proxy to PSR-4

This commit is contained in:
Joas Schilling 2016-05-12 16:11:59 +02:00
parent d16a97a273
commit e73d811425
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
3 changed files with 7 additions and 4 deletions

View File

@ -26,7 +26,7 @@ namespace OCA\User_LDAP;
use OCA\user_ldap\lib\ILDAPWrapper;
class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface {
class Group_Proxy extends Proxy implements \OCP\GroupInterface {
private $backends = array();
private $refBackend = null;

View File

@ -26,9 +26,13 @@
*
*/
namespace OCA\user_ldap\lib;
namespace OCA\User_LDAP;
use OCA\user_ldap\lib\Access;
use OCA\user_ldap\lib\Connection;
use OCA\user_ldap\lib\FilesystemHelper;
use OCA\user_ldap\lib\ILDAPWrapper;
use OCA\user_ldap\lib\LogWrapper;
use OCA\User_LDAP\Mapping\UserMapping;
use OCA\User_LDAP\Mapping\GroupMapping;

View File

@ -28,10 +28,9 @@ namespace OCA\User_LDAP;
use OCA\user_ldap\lib\ILDAPWrapper;
use OCA\User_LDAP\User\User;
use \OCA\user_ldap\User_LDAP;
use OCP\IConfig;
class User_Proxy extends lib\Proxy implements \OCP\IUserBackend, \OCP\UserInterface {
class User_Proxy extends Proxy implements \OCP\IUserBackend, \OCP\UserInterface {
private $backends = array();
private $refBackend = null;