diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-11 21:51:30 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | 87b548ed91c03f051a93cc39bf94650922c1f55f (patch) | |
tree | 1c2a03d338f3c9a9e729b08d66c83ef9a55782f2 /lib/private/vobject.php | |
parent | a7ae2e874a28aed2c190840634db50a19ab1d2e7 (diff) | |
download | nextcloud-server-87b548ed91c03f051a93cc39bf94650922c1f55f.tar.gz nextcloud-server-87b548ed91c03f051a93cc39bf94650922c1f55f.zip |
Fix all PHPDoc types and variable names, in /lib
Diffstat (limited to 'lib/private/vobject.php')
-rw-r--r-- | lib/private/vobject.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/vobject.php b/lib/private/vobject.php index 20cacd926ba..cb556e07c9e 100644 --- a/lib/private/vobject.php +++ b/lib/private/vobject.php @@ -89,7 +89,7 @@ class OC_VObject{ /** * Constructor - * @param Sabre\VObject\Component or string + * @param Sabre\VObject\Component|string $vobject_or_name */ public function __construct($vobject_or_name) { if (is_object($vobject_or_name)) { @@ -101,7 +101,7 @@ class OC_VObject{ /** * @todo Write documentation - * @param $item + * @param \OC_VObject|\Sabre\VObject\Component $item * @param null $itemValue */ public function add($item, $itemValue = null) { @@ -138,7 +138,7 @@ class OC_VObject{ /** * @todo Write documentation - * @param mixed $name + * @param mixed $name * @param string $string */ public function setString($name, $string) { @@ -175,7 +175,7 @@ class OC_VObject{ /** * @todo Write documentation - * @param $name + * @param string $name * @return string */ public function getAsString($name) { @@ -186,7 +186,7 @@ class OC_VObject{ /** * @todo Write documentation - * @param $name + * @param string $name * @return array */ public function getAsArray($name) { @@ -200,7 +200,7 @@ class OC_VObject{ /** * @todo Write documentation - * @param $name + * @param string $name * @return array|OC_VObject|\Sabre\VObject\Property */ public function &__get($name) { @@ -242,8 +242,8 @@ class OC_VObject{ /** * @todo Write documentation - * @param $function - * @param $arguments + * @param callable $function + * @param array $arguments * @return mixed */ public function __call($function, $arguments) { |