Browse Source
Move Proxy to PSR-4
remotes/origin/stand-alone-job-executer
Joas Schilling
10 years ago
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
3 changed files with
7 additions and
4 deletions
-
apps/user_ldap/lib/Group_Proxy.php
-
apps/user_ldap/lib/Proxy.php
-
apps/user_ldap/lib/User_Proxy.php
|
|
|
@ -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; |
|
|
|
|
|
|
|
|