Browse Source

Move Proxy to PSR-4

remotes/origin/stand-alone-job-executer
Joas Schilling 10 years ago
parent
commit
e73d811425
No known key found for this signature in database GPG Key ID: 70A0B324C41C0946
  1. 2
      apps/user_ldap/lib/Group_Proxy.php
  2. 6
      apps/user_ldap/lib/Proxy.php
  3. 3
      apps/user_ldap/lib/User_Proxy.php

2
apps/user_ldap/lib/Group_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;

6
apps/user_ldap/lib/proxy.php → apps/user_ldap/lib/Proxy.php

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

3
apps/user_ldap/lib/User_Proxy.php

@ -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…
Cancel
Save