summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CardDAV/AddressBook.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-02-23 10:33:54 +0100
committerJoas Schilling <coding@schilljs.com>2017-04-20 10:44:11 +0200
commit62ef59616df68ba4d7cf1df57008b60e13049483 (patch)
tree70735ece128dfe16fe3ad2375067bb81d2f89cab /apps/dav/lib/CardDAV/AddressBook.php
parentc2d1e6e7ff82e46e3c933e27ca6a24f9250da14d (diff)
downloadnextcloud-server-62ef59616df68ba4d7cf1df57008b60e13049483.tar.gz
nextcloud-server-62ef59616df68ba4d7cf1df57008b60e13049483.zip
Add public access modifier to all methods
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/lib/CardDAV/AddressBook.php')
-rw-r--r--apps/dav/lib/CardDAV/AddressBook.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/dav/lib/CardDAV/AddressBook.php b/apps/dav/lib/CardDAV/AddressBook.php
index 84448c5459e..89c8571821f 100644
--- a/apps/dav/lib/CardDAV/AddressBook.php
+++ b/apps/dav/lib/CardDAV/AddressBook.php
@@ -66,7 +66,7 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
* @return void
* @throws Forbidden
*/
- function updateShares(array $add, array $remove) {
+ public function updateShares(array $add, array $remove) {
if ($this->isShared()) {
throw new Forbidden();
}
@@ -87,7 +87,7 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
*
* @return array
*/
- function getShares() {
+ public function getShares() {
if ($this->isShared()) {
return [];
}
@@ -96,7 +96,7 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
return $carddavBackend->getShares($this->getResourceId());
}
- function getACL() {
+ public function getACL() {
$acl = [
[
'privilege' => '{DAV:}read',
@@ -139,11 +139,11 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
return $carddavBackend->applyShareAcl($this->getResourceId(), $acl);
}
- function getChildACL() {
+ public function getChildACL() {
return $this->getACL();
}
- function getChild($name) {
+ public function getChild($name) {
$obj = $this->carddavBackend->getCard($this->addressBookInfo['id'], $name);
if (!$obj) {
@@ -161,14 +161,14 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
return $this->addressBookInfo['id'];
}
- function getOwner() {
+ public function getOwner() {
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
return $this->addressBookInfo['{http://owncloud.org/ns}owner-principal'];
}
return parent::getOwner();
}
- function delete() {
+ public function delete() {
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
$principal = 'principal:' . parent::getOwner();
$shares = $this->carddavBackend->getShares($this->getResourceId());
@@ -189,7 +189,7 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
parent::delete();
}
- function propPatch(PropPatch $propPatch) {
+ public function propPatch(PropPatch $propPatch) {
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
throw new Forbidden();
}