Fix annotations

This commit is contained in:
Thomas Citharel 2016-07-07 09:45:01 +02:00 committed by Lukas Reschke
parent 4a0e6e2ad0
commit f89961ddba
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 4 additions and 4 deletions

View File

@ -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;