Skip to content
Snippets Groups Projects
Commit f2ddd565 authored by Lukas Reschke's avatar Lukas Reschke Committed by Morris Jobke
Browse files

Fix code-style

parent f2e759b5
No related branches found
No related tags found
No related merge requests found
...@@ -79,6 +79,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac ...@@ -79,6 +79,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac
* *
* @param string $principal * @param string $principal
* @return string[] * @return string[]
* @throws \Sabre\DAV\Exception
*/ */
public function getGroupMemberSet($principal) { public function getGroupMemberSet($principal) {
// TODO: for now the group principal has only one member, the user itself // TODO: for now the group principal has only one member, the user itself
...@@ -97,6 +98,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac ...@@ -97,6 +98,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac
* *
* @param string $principal * @param string $principal
* @return array * @return array
* @throws \Sabre\DAV\Exception
*/ */
public function getGroupMembership($principal) { public function getGroupMembership($principal) {
list($prefix, $name) = \Sabre\DAV\URLUtil::splitPath($principal); list($prefix, $name) = \Sabre\DAV\URLUtil::splitPath($principal);
...@@ -128,7 +130,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac ...@@ -128,7 +130,7 @@ class OC_Connector_Sabre_Principal implements \Sabre\DAVACL\PrincipalBackend\Bac
* *
* @param string $principal * @param string $principal
* @param array $members * @param array $members
* @return void * @throws \Sabre\DAV\Exception
*/ */
public function setGroupMemberSet($principal, array $members) { public function setGroupMemberSet($principal, array $members) {
throw new \Sabre\DAV\Exception('Setting members of the group is not supported yet'); throw new \Sabre\DAV\Exception('Setting members of the group is not supported yet');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment