diff options
author | Bernhard Reiter <ockham@raz.or.at> | 2014-10-13 23:12:18 +0200 |
---|---|---|
committer | Bernhard Reiter <ockham@raz.or.at> | 2014-10-14 00:06:33 +0200 |
commit | b416f7d8acabebec94e771394b9e3d69c69cadd5 (patch) | |
tree | ae42925d38649e6d42af207236514e5f2b250cd4 /lib/public | |
parent | 17701796480ae1fd53222fa4e59d5fa1b79648db (diff) | |
download | nextcloud-server-b416f7d8acabebec94e771394b9e3d69c69cadd5.tar.gz nextcloud-server-b416f7d8acabebec94e771394b9e3d69c69cadd5.zip |
PHPDoc fixes as suggested by @MorrisJobke.
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/itags.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/itags.php b/lib/public/itags.php index 2b09dcb5685..4514746bbe8 100644 --- a/lib/public/itags.php +++ b/lib/public/itags.php @@ -114,7 +114,7 @@ interface ITags { /** * Rename tag. * - * @param string $from The name of the existing tag + * @param string|integer $from The name or ID of the existing tag * @param string $to The new name of the tag. * @return bool */ @@ -183,7 +183,7 @@ interface ITags { /** * Delete tags from the database * - * @param string[] $names An array of tags to delete + * @param string[]|integer[] $names An array of tags (names or IDs) to delete * @return bool Returns false on error */ public function delete($names); |