summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/Proxy/Proxy.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/CalDAV/Proxy/Proxy.php')
-rw-r--r--apps/dav/lib/CalDAV/Proxy/Proxy.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/apps/dav/lib/CalDAV/Proxy/Proxy.php b/apps/dav/lib/CalDAV/Proxy/Proxy.php
index 1df97dee19e..cb01470ae82 100644
--- a/apps/dav/lib/CalDAV/Proxy/Proxy.php
+++ b/apps/dav/lib/CalDAV/Proxy/Proxy.php
@@ -22,11 +22,18 @@ declare(strict_types=1);
*
*/
-namespace OCA\DAV\CalDAV\Delegation;
+namespace OCA\DAV\CalDAV\Proxy;
-use OCA\DAV\CalDAV\ProxyMapper;
use OCP\AppFramework\Db\Entity;
+/**
+ * @method string getOwnerId()
+ * @method void setOwnerId(string $ownerId)
+ * @method string getProxyId()
+ * @method void setProxyId(string $proxyId)
+ * @method int getPermissions()
+ * @method void setPermissions(int $permissions)
+ */
class Proxy extends Entity {
/** @var string */
@@ -34,7 +41,7 @@ class Proxy extends Entity {
/** @var string */
protected $proxyId;
/** @var int */
- private $permissions;
+ protected $permissions;
public function __construct() {
$this->addType('ownerId', 'string');