From 0ed00bca439b73c53f145e2e1bf83d6b32d98623 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 19 Dec 2014 16:50:32 +0100 Subject: Use namespace --- lib/private/connector/sabre/principal.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/private/connector/sabre/principal.php b/lib/private/connector/sabre/principal.php index 5ddde98c358..4bb28c65ddd 100644 --- a/lib/private/connector/sabre/principal.php +++ b/lib/private/connector/sabre/principal.php @@ -9,15 +9,21 @@ * See the COPYING-README file. */ +namespace OC\Connector\Sabre; + use OCP\IUserManager; use OCP\IConfig; -class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\BackendInterface { +class Principal implements \Sabre\DAVACL\PrincipalBackend\BackendInterface { /** @var IConfig */ private $config; /** @var IUserManager */ private $userManager; + /** + * @param IConfig $config + * @param IUserManager $userManager + */ public function __construct(IConfig $config, IUserManager $userManager) { $this->config = $config; @@ -45,7 +51,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac $principal = [ 'uri' => 'principals/' . $user->getUID(), - '{DAV:}displayname' => $user->getUID() + '{DAV:}displayname' => $user->getUID(), ]; $email = $this->config->getUserValue($user->getUID(), 'settings', 'email'); @@ -149,10 +155,20 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac throw new \Sabre\DAV\Exception('Setting members of the group is not supported yet'); } + /** + * @param string $path + * @param array $mutations + * @return int + */ function updatePrincipal($path, $mutations) { return 0; } + /** + * @param string $prefixPath + * @param array $searchProperties + * @return array + */ function searchPrincipals($prefixPath, array $searchProperties) { return []; } -- cgit v1.2.3