Browse Source

Move Proxy to PSR-4

tags/v9.1.0beta1
Joas Schilling 8 years ago
parent
commit
e73d811425
No account linked to committer's email address

+ 1
- 1
apps/user_ldap/lib/Group_Proxy.php 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;


apps/user_ldap/lib/proxy.php → apps/user_ldap/lib/Proxy.php 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;


+ 1
- 2
apps/user_ldap/lib/User_Proxy.php 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;


Loading…
Cancel
Save