Move Proxy to PSR-4
This commit is contained in:
parent
d16a97a273
commit
e73d811425
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue