diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:28:09 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-10 12:28:09 +0300 |
commit | 2271a9799282b5dde00a49a291b0f5f11de0358e (patch) | |
tree | 38e44386e6ce1f5a3dbcd53b6977699ee0824b64 /lib/connector/sabre/principal.php | |
parent | 9a2bc5255bbf0a80ab1c4269d2b308b3ba6377d3 (diff) | |
download | nextcloud-server-2271a9799282b5dde00a49a291b0f5f11de0358e.tar.gz nextcloud-server-2271a9799282b5dde00a49a291b0f5f11de0358e.zip |
Respect coding style
Diffstat (limited to 'lib/connector/sabre/principal.php')
-rw-r--r-- | lib/connector/sabre/principal.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/connector/sabre/principal.php b/lib/connector/sabre/principal.php index cfc72eda9f9..ee95ae63306 100644 --- a/lib/connector/sabre/principal.php +++ b/lib/connector/sabre/principal.php @@ -66,7 +66,7 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend { */ public function getGroupMemberSet($principal) { // TODO: for now the group principal has only one member, the user itself - list($prefix,$name) = Sabre_DAV_URLUtil::splitPath($principal); + list($prefix, $name) = Sabre_DAV_URLUtil::splitPath($principal); $principal = $this->getPrincipalByPath($prefix); if (!$principal) throw new Sabre_DAV_Exception('Principal not found'); @@ -115,6 +115,12 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend { public function setGroupMemberSet($principal, array $members) { throw new Sabre_DAV_Exception('Setting members of the group is not supported yet'); } - function updatePrincipal($path, $mutations) {return 0;} - function searchPrincipals($prefixPath, array $searchProperties) {return 0;} + + function updatePrincipal($path, $mutations) { + return 0; + } + + function searchPrincipals($prefixPath, array $searchProperties) { + return 0; + } } |