summaryrefslogtreecommitdiffstats
path: root/lib/public/Comments
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-08-26 16:59:40 +0200
committerJulius Härtl <jus@bitgrid.net>2020-08-26 16:59:40 +0200
commit45a474071e2245a3d2c31a193a02e707c53c5790 (patch)
tree55c1e7c1ecec34a0f044017c330a61b254bb8fc0 /lib/public/Comments
parent94c0ca4b8ca75802bcecffa19fea9d5e14545c35 (diff)
downloadnextcloud-server-45a474071e2245a3d2c31a193a02e707c53c5790.tar.gz
nextcloud-server-45a474071e2245a3d2c31a193a02e707c53c5790.zip
Remove @package annotations from public namespace
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/public/Comments')
-rw-r--r--lib/public/Comments/CommentsEntityEvent.php1
-rw-r--r--lib/public/Comments/CommentsEvent.php1
-rw-r--r--lib/public/Comments/IComment.php1
-rw-r--r--lib/public/Comments/ICommentsEventHandler.php1
-rw-r--r--lib/public/Comments/ICommentsManager.php1
-rw-r--r--lib/public/Comments/ICommentsManagerFactory.php1
6 files changed, 0 insertions, 6 deletions
diff --git a/lib/public/Comments/CommentsEntityEvent.php b/lib/public/Comments/CommentsEntityEvent.php
index 27021fd6e3d..17f3e76a996 100644
--- a/lib/public/Comments/CommentsEntityEvent.php
+++ b/lib/public/Comments/CommentsEntityEvent.php
@@ -29,7 +29,6 @@ use OCP\EventDispatcher\Event;
/**
* Class CommentsEntityEvent
*
- * @package OCP\Comments
* @since 9.1.0
*/
class CommentsEntityEvent extends Event {
diff --git a/lib/public/Comments/CommentsEvent.php b/lib/public/Comments/CommentsEvent.php
index 94ef2892f38..1487200fc68 100644
--- a/lib/public/Comments/CommentsEvent.php
+++ b/lib/public/Comments/CommentsEvent.php
@@ -29,7 +29,6 @@ use OCP\EventDispatcher\Event;
/**
* Class CommentsEvent
*
- * @package OCP\Comments
* @since 9.0.0
*/
class CommentsEvent extends Event {
diff --git a/lib/public/Comments/IComment.php b/lib/public/Comments/IComment.php
index 8a31715918e..fb8c1facfdd 100644
--- a/lib/public/Comments/IComment.php
+++ b/lib/public/Comments/IComment.php
@@ -31,7 +31,6 @@ namespace OCP\Comments;
*
* This class represents a comment
*
- * @package OCP\Comments
* @since 9.0.0
*/
interface IComment {
diff --git a/lib/public/Comments/ICommentsEventHandler.php b/lib/public/Comments/ICommentsEventHandler.php
index 7c9cd287d43..38939fefd5b 100644
--- a/lib/public/Comments/ICommentsEventHandler.php
+++ b/lib/public/Comments/ICommentsEventHandler.php
@@ -27,7 +27,6 @@ namespace OCP\Comments;
/**
* Interface ICommentsEventHandler
*
- * @package OCP\Comments
* @since 11.0.0
*/
interface ICommentsEventHandler {
diff --git a/lib/public/Comments/ICommentsManager.php b/lib/public/Comments/ICommentsManager.php
index 98387f2025a..1406afb65db 100644
--- a/lib/public/Comments/ICommentsManager.php
+++ b/lib/public/Comments/ICommentsManager.php
@@ -35,7 +35,6 @@ use OCP\IUser;
*
* This class manages the access to comments
*
- * @package OCP\Comments
* @since 9.0.0
*/
interface ICommentsManager {
diff --git a/lib/public/Comments/ICommentsManagerFactory.php b/lib/public/Comments/ICommentsManagerFactory.php
index cbfb5f012ae..f7983093e8e 100644
--- a/lib/public/Comments/ICommentsManagerFactory.php
+++ b/lib/public/Comments/ICommentsManagerFactory.php
@@ -33,7 +33,6 @@ use OCP\IServerContainer;
* This class is responsible for instantiating and returning an ICommentsManager
* instance.
*
- * @package OCP\Comments
* @since 9.0.0
*/
interface ICommentsManagerFactory {