diff options
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); |