summaryrefslogtreecommitdiffstats
path: root/lib/public/comments
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2015-12-08 14:58:18 +0100
committerArthur Schiwon <blizzz@owncloud.com>2015-12-09 14:34:23 +0100
commit249dc4490f55c0a40ec8af0800bbce146b6e5eac (patch)
treef94696e4b6b466867f468804d10895a2faef6138 /lib/public/comments
parentdec1f1d24a9bcb710ca75b83d90251f1fe53967e (diff)
downloadnextcloud-server-249dc4490f55c0a40ec8af0800bbce146b6e5eac.tar.gz
nextcloud-server-249dc4490f55c0a40ec8af0800bbce146b6e5eac.zip
improve PHP doc and remove superflous by reference indicator
Diffstat (limited to 'lib/public/comments')
-rw-r--r--lib/public/comments/icommentsmanager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/comments/icommentsmanager.php b/lib/public/comments/icommentsmanager.php
index f6883224d60..7626ffd6351 100644
--- a/lib/public/comments/icommentsmanager.php
+++ b/lib/public/comments/icommentsmanager.php
@@ -139,12 +139,12 @@ interface ICommentsManager {
* Throws NotFoundException when a comment that is to be updated does not
* exist anymore at this point of time.
*
- * @param IComment &$comment
+ * @param IComment $comment
* @return bool
* @throws NotFoundException
* @since 9.0.0
*/
- public function save(IComment &$comment);
+ public function save(IComment $comment);
/**
* removes references to specific actor (e.g. on user delete) of a comment.