From 5bf3d1bb384da56adbf205752be8f840aac3b0c5 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 3 Dec 2019 19:57:53 +0100 Subject: Update license headers Signed-off-by: Christoph Wurst --- apps/updatenotification/appinfo/app.php | 4 +++- apps/updatenotification/appinfo/routes.php | 2 +- apps/updatenotification/lib/AppInfo/Application.php | 5 ++++- apps/updatenotification/lib/Command/Check.php | 7 ++++--- apps/updatenotification/lib/Controller/APIController.php | 6 +++++- apps/updatenotification/lib/Controller/AdminController.php | 5 +++-- apps/updatenotification/lib/Notification/BackgroundJob.php | 5 +++-- apps/updatenotification/lib/Notification/Notifier.php | 5 ++++- apps/updatenotification/lib/ResetTokenBackgroundJob.php | 5 ++++- apps/updatenotification/lib/Settings/Admin.php | 6 ++++-- apps/updatenotification/lib/UpdateChecker.php | 5 ++++- apps/updatenotification/tests/Controller/AdminControllerTest.php | 6 ++++-- apps/updatenotification/tests/Notification/BackgroundJobTest.php | 6 +++++- apps/updatenotification/tests/Notification/NotifierTest.php | 5 ++++- apps/updatenotification/tests/ResetTokenBackgroundJobTest.php | 5 ++++- apps/updatenotification/tests/Settings/AdminTest.php | 8 ++++++-- apps/updatenotification/tests/UpdateCheckerTest.php | 7 +++++-- 17 files changed, 67 insertions(+), 25 deletions(-) (limited to 'apps/updatenotification') diff --git a/apps/updatenotification/appinfo/app.php b/apps/updatenotification/appinfo/app.php index 6a34aa79d9b..a0608d02370 100644 --- a/apps/updatenotification/appinfo/app.php +++ b/apps/updatenotification/appinfo/app.php @@ -3,6 +3,8 @@ * @copyright Copyright (c) 2018, Joas Schilling * * @author Joas Schilling + * @author Lukas Reschke + * @author Robin Appelman * * @license GNU AGPL version 3 or any later version * @@ -17,7 +19,7 @@ * 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/updatenotification/appinfo/routes.php b/apps/updatenotification/appinfo/routes.php index 86191680c41..10835164c7b 100644 --- a/apps/updatenotification/appinfo/routes.php +++ b/apps/updatenotification/appinfo/routes.php @@ -17,7 +17,7 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/AppInfo/Application.php b/apps/updatenotification/lib/AppInfo/Application.php index 6a1bf719469..9a0461d573b 100644 --- a/apps/updatenotification/lib/AppInfo/Application.php +++ b/apps/updatenotification/lib/AppInfo/Application.php @@ -1,9 +1,12 @@ * * @author Joas Schilling + * @author Lukas Reschke * * @license GNU AGPL version 3 or any later version * @@ -18,7 +21,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/updatenotification/lib/Command/Check.php b/apps/updatenotification/lib/Command/Check.php index fac4e4201f2..93d3d19e60e 100644 --- a/apps/updatenotification/lib/Command/Check.php +++ b/apps/updatenotification/lib/Command/Check.php @@ -1,9 +1,10 @@ + * @author Tobia De Koninck + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -17,7 +18,7 @@ * 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/updatenotification/lib/Controller/APIController.php b/apps/updatenotification/lib/Controller/APIController.php index 0314ccf38c3..2f3505b5047 100644 --- a/apps/updatenotification/lib/Controller/APIController.php +++ b/apps/updatenotification/lib/Controller/APIController.php @@ -1,8 +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 @@ -16,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/updatenotification/lib/Controller/AdminController.php b/apps/updatenotification/lib/Controller/AdminController.php index 57f89969db4..907d75aed6a 100644 --- a/apps/updatenotification/lib/Controller/AdminController.php +++ b/apps/updatenotification/lib/Controller/AdminController.php @@ -1,9 +1,10 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke @@ -20,7 +21,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/Notification/BackgroundJob.php b/apps/updatenotification/lib/Notification/BackgroundJob.php index c010ccc89e5..b2e3055f59a 100644 --- a/apps/updatenotification/lib/Notification/BackgroundJob.php +++ b/apps/updatenotification/lib/Notification/BackgroundJob.php @@ -1,10 +1,11 @@ - * @author Lukas Reschke * @author Morris Jobke * * @license AGPL-3.0 @@ -19,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/Notification/Notifier.php b/apps/updatenotification/lib/Notification/Notifier.php index 44fe91c63d5..00d7993891d 100644 --- a/apps/updatenotification/lib/Notification/Notifier.php +++ b/apps/updatenotification/lib/Notification/Notifier.php @@ -1,9 +1,12 @@ + * @author Julius Härtl * @author Roeland Jago Douma * * @license AGPL-3.0 @@ -18,7 +21,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/ResetTokenBackgroundJob.php b/apps/updatenotification/lib/ResetTokenBackgroundJob.php index 87cca466ec7..9bd414d1e5c 100644 --- a/apps/updatenotification/lib/ResetTokenBackgroundJob.php +++ b/apps/updatenotification/lib/ResetTokenBackgroundJob.php @@ -1,8 +1,11 @@ * @author Lukas Reschke * * @license AGPL-3.0 @@ -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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/Settings/Admin.php b/apps/updatenotification/lib/Settings/Admin.php index e7a8f07a183..8d36e774b06 100644 --- a/apps/updatenotification/lib/Settings/Admin.php +++ b/apps/updatenotification/lib/Settings/Admin.php @@ -1,11 +1,13 @@ * @author Joas Schilling - * @author Lukas Reschke + * @author Julius Härtl * @author Morris Jobke * * @license AGPL-3.0 @@ -20,7 +22,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/lib/UpdateChecker.php b/apps/updatenotification/lib/UpdateChecker.php index 6375e21b084..b83eff8818b 100644 --- a/apps/updatenotification/lib/UpdateChecker.php +++ b/apps/updatenotification/lib/UpdateChecker.php @@ -1,8 +1,11 @@ * @author Joas Schilling * @author Lukas Reschke * @author Thomas Müller @@ -19,7 +22,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/Controller/AdminControllerTest.php b/apps/updatenotification/tests/Controller/AdminControllerTest.php index ca380184215..597b646ee6b 100644 --- a/apps/updatenotification/tests/Controller/AdminControllerTest.php +++ b/apps/updatenotification/tests/Controller/AdminControllerTest.php @@ -1,11 +1,13 @@ * @author Lukas Reschke - * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -19,7 +21,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/Notification/BackgroundJobTest.php b/apps/updatenotification/tests/Notification/BackgroundJobTest.php index 117c2ad86ae..966ac1e2949 100644 --- a/apps/updatenotification/tests/Notification/BackgroundJobTest.php +++ b/apps/updatenotification/tests/Notification/BackgroundJobTest.php @@ -1,9 +1,13 @@ + * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -17,7 +21,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/Notification/NotifierTest.php b/apps/updatenotification/tests/Notification/NotifierTest.php index b6620bb9c69..d744b7a97fd 100644 --- a/apps/updatenotification/tests/Notification/NotifierTest.php +++ b/apps/updatenotification/tests/Notification/NotifierTest.php @@ -1,9 +1,12 @@ + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/ResetTokenBackgroundJobTest.php b/apps/updatenotification/tests/ResetTokenBackgroundJobTest.php index eb9e11594ba..0de038c5768 100644 --- a/apps/updatenotification/tests/ResetTokenBackgroundJobTest.php +++ b/apps/updatenotification/tests/ResetTokenBackgroundJobTest.php @@ -1,8 +1,11 @@ * @author Lukas Reschke * @author Roeland Jago Douma * @@ -18,7 +21,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/Settings/AdminTest.php b/apps/updatenotification/tests/Settings/AdminTest.php index 049d9bf5b9a..af5db66795a 100644 --- a/apps/updatenotification/tests/Settings/AdminTest.php +++ b/apps/updatenotification/tests/Settings/AdminTest.php @@ -1,11 +1,15 @@ * @author Joas Schilling - * @author Lukas Reschke + * @author Julius Härtl * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -19,7 +23,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ diff --git a/apps/updatenotification/tests/UpdateCheckerTest.php b/apps/updatenotification/tests/UpdateCheckerTest.php index 00c8aa569db..b5f7cee60ce 100644 --- a/apps/updatenotification/tests/UpdateCheckerTest.php +++ b/apps/updatenotification/tests/UpdateCheckerTest.php @@ -1,11 +1,14 @@ * @author Joas Schilling * @author Lukas Reschke - * @author Thomas Müller + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -19,7 +22,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, version 3, - * along with this program. If not, see + * along with this program. If not, see * */ -- cgit v1.2.3