From 2a054e6c04e0a40421510eb889cbf59f153c5177 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 24 Aug 2020 14:54:25 +0200 Subject: Update the license headers for Nextcloud 20 Signed-off-by: Christoph Wurst --- apps/comments/lib/Capabilities.php | 5 ++++- apps/comments/lib/JSSettingsHelper.php | 1 + apps/comments/lib/Listener/CommentsEntityEventListener.php | 5 +++-- apps/comments/lib/Search/CommentsSearchProvider.php | 7 +++++-- apps/comments/lib/Search/LegacyProvider.php | 2 +- apps/comments/lib/Search/Result.php | 1 + apps/comments/tests/Unit/Activity/ListenerTest.php | 1 + apps/comments/tests/Unit/Collaboration/CommentersSorterTest.php | 1 + apps/comments/tests/Unit/EventHandlerTest.php | 1 + apps/comments/tests/Unit/JSSettingsHelperTest.php | 1 + 10 files changed, 19 insertions(+), 6 deletions(-) (limited to 'apps/comments') diff --git a/apps/comments/lib/Capabilities.php b/apps/comments/lib/Capabilities.php index c6f6fbee883..a1083c7d8f6 100644 --- a/apps/comments/lib/Capabilities.php +++ b/apps/comments/lib/Capabilities.php @@ -1,9 +1,12 @@ * + * @author Joas Schilling + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -17,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . * */ diff --git a/apps/comments/lib/JSSettingsHelper.php b/apps/comments/lib/JSSettingsHelper.php index 93578e06295..19e4392d0b7 100644 --- a/apps/comments/lib/JSSettingsHelper.php +++ b/apps/comments/lib/JSSettingsHelper.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2017 Arthur Schiwon * * @author Arthur Schiwon + * @author Christoph Wurst * * @license GNU AGPL version 3 or any later version * diff --git a/apps/comments/lib/Listener/CommentsEntityEventListener.php b/apps/comments/lib/Listener/CommentsEntityEventListener.php index c08d992405f..a0d5b175f0a 100644 --- a/apps/comments/lib/Listener/CommentsEntityEventListener.php +++ b/apps/comments/lib/Listener/CommentsEntityEventListener.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2020 Christoph Wurst * - * @author 2020 Christoph Wurst + * @author Christoph Wurst * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . + * */ namespace OCA\Comments\Listener; diff --git a/apps/comments/lib/Search/CommentsSearchProvider.php b/apps/comments/lib/Search/CommentsSearchProvider.php index e6443c20a2f..cae4c2f2351 100644 --- a/apps/comments/lib/Search/CommentsSearchProvider.php +++ b/apps/comments/lib/Search/CommentsSearchProvider.php @@ -5,7 +5,9 @@ declare(strict_types=1); /** * @copyright 2020 Christoph Wurst * - * @author 2020 Christoph Wurst + * @author Christoph Wurst + * @author Joas Schilling + * @author John Molakvoæ (skjnldsv) * * @license GNU AGPL version 3 or any later version * @@ -20,7 +22,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . + * */ namespace OCA\Comments\Search; diff --git a/apps/comments/lib/Search/LegacyProvider.php b/apps/comments/lib/Search/LegacyProvider.php index abcb8535f5c..d58cc9847cf 100644 --- a/apps/comments/lib/Search/LegacyProvider.php +++ b/apps/comments/lib/Search/LegacyProvider.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2018 Joas Schilling * - * @author Joas Schilling + * @author Christoph Wurst * * @license GNU AGPL version 3 or any later version * diff --git a/apps/comments/lib/Search/Result.php b/apps/comments/lib/Search/Result.php index d0e9902c1fb..e154ca0277d 100644 --- a/apps/comments/lib/Search/Result.php +++ b/apps/comments/lib/Search/Result.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2018 Joas Schilling * + * @author Christoph Wurst * @author Joas Schilling * @author Michał Węgrzynek * diff --git a/apps/comments/tests/Unit/Activity/ListenerTest.php b/apps/comments/tests/Unit/Activity/ListenerTest.php index 576cc7d9a25..558241de7f5 100644 --- a/apps/comments/tests/Unit/Activity/ListenerTest.php +++ b/apps/comments/tests/Unit/Activity/ListenerTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2018 Arthur Schiwon * * @author Arthur Schiwon + * @author Morris Jobke * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version diff --git a/apps/comments/tests/Unit/Collaboration/CommentersSorterTest.php b/apps/comments/tests/Unit/Collaboration/CommentersSorterTest.php index 103d21d76a3..28b23dc43bd 100644 --- a/apps/comments/tests/Unit/Collaboration/CommentersSorterTest.php +++ b/apps/comments/tests/Unit/Collaboration/CommentersSorterTest.php @@ -4,6 +4,7 @@ * * @author Arthur Schiwon * @author Christoph Wurst + * @author Morris Jobke * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version diff --git a/apps/comments/tests/Unit/EventHandlerTest.php b/apps/comments/tests/Unit/EventHandlerTest.php index daf638aa3d1..cd8b5e1031c 100644 --- a/apps/comments/tests/Unit/EventHandlerTest.php +++ b/apps/comments/tests/Unit/EventHandlerTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016 Arthur Schiwon * * @author Arthur Schiwon + * @author Morris Jobke * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version diff --git a/apps/comments/tests/Unit/JSSettingsHelperTest.php b/apps/comments/tests/Unit/JSSettingsHelperTest.php index 94d13a77d94..bf85f02f835 100644 --- a/apps/comments/tests/Unit/JSSettingsHelperTest.php +++ b/apps/comments/tests/Unit/JSSettingsHelperTest.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2017 Arthur Schiwon * * @author Arthur Schiwon + * @author Christoph Wurst * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version -- cgit v1.2.3