summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-07-07 09:45:01 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-09-26 11:55:34 +0200
commitf89961ddba9c8c34fb76b2c26ad2dd64762f431f (patch)
tree447da10fb6b2166236a4efce17c1a4dc3e00db26 /apps
parent4a0e6e2ad013fc6d7e43c0662438e94d6a8a7995 (diff)
downloadnextcloud-server-f89961ddba9c8c34fb76b2c26ad2dd64762f431f.tar.gz
nextcloud-server-f89961ddba9c8c34fb76b2c26ad2dd64762f431f.zip
Fix annotations
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php b/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
index 4926d3abf9e..45a7fe0257b 100644
--- a/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
+++ b/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php
@@ -9,17 +9,17 @@ use Sabre\Xml\XmlSerializable;
class Publisher implements XmlSerializable {
/**
- * @var $publishUrl
+ * @var string $publishUrl
*/
protected $publishUrl;
/**
- * @var $isPublished
+ * @var boolean $isPublished
*/
protected $isPublished;
/**
- * @param str $publishUrl
+ * @param string $publishUrl
* @param boolean $isPublished
*/
function __construct($publishUrl, $isPublished) {
@@ -28,7 +28,7 @@ class Publisher implements XmlSerializable {
}
/**
- * @return str
+ * @return string
*/
function getValue() {
return $this->publishUrl;