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/encryption/appinfo/app.php | 3 ++- apps/encryption/appinfo/routes.php | 6 ++++-- apps/encryption/lib/AppInfo/Application.php | 4 +++- apps/encryption/lib/Command/DisableMasterKey.php | 2 +- apps/encryption/lib/Command/EnableMasterKey.php | 2 +- apps/encryption/lib/Command/RecoverUser.php | 4 +++- apps/encryption/lib/Controller/RecoveryController.php | 3 ++- apps/encryption/lib/Controller/SettingsController.php | 2 +- apps/encryption/lib/Controller/StatusController.php | 2 +- apps/encryption/lib/Crypto/Crypt.php | 3 ++- apps/encryption/lib/Crypto/DecryptAll.php | 2 +- apps/encryption/lib/Crypto/EncryptAll.php | 3 ++- apps/encryption/lib/Crypto/Encryption.php | 3 ++- apps/encryption/lib/Exceptions/MultiKeyDecryptException.php | 3 ++- apps/encryption/lib/Exceptions/MultiKeyEncryptException.php | 3 ++- apps/encryption/lib/Exceptions/PrivateKeyMissingException.php | 2 +- apps/encryption/lib/Exceptions/PublicKeyMissingException.php | 3 ++- apps/encryption/lib/HookManager.php | 2 +- apps/encryption/lib/Hooks/Contracts/IHook.php | 2 +- apps/encryption/lib/Hooks/UserHooks.php | 4 +++- apps/encryption/lib/KeyManager.php | 4 +++- apps/encryption/lib/Migration/SetMasterKeyStatus.php | 2 +- apps/encryption/lib/Recovery.php | 4 +++- apps/encryption/lib/Session.php | 3 ++- apps/encryption/lib/Settings/Admin.php | 4 +++- apps/encryption/lib/Settings/Personal.php | 2 +- apps/encryption/lib/Users/Setup.php | 2 +- apps/encryption/lib/Util.php | 3 ++- apps/encryption/tests/Command/TestEnableMasterKey.php | 3 ++- apps/encryption/tests/Controller/RecoveryControllerTest.php | 3 ++- apps/encryption/tests/Controller/SettingsControllerTest.php | 2 +- apps/encryption/tests/Controller/StatusControllerTest.php | 2 +- apps/encryption/tests/Crypto/CryptTest.php | 3 +-- apps/encryption/tests/Crypto/DecryptAllTest.php | 3 ++- apps/encryption/tests/Crypto/EncryptAllTest.php | 3 ++- apps/encryption/tests/Crypto/EncryptionTest.php | 2 +- apps/encryption/tests/HookManagerTest.php | 2 +- apps/encryption/tests/Hooks/UserHooksTest.php | 2 +- apps/encryption/tests/KeyManagerTest.php | 2 +- apps/encryption/tests/RecoveryTest.php | 2 +- apps/encryption/tests/SessionTest.php | 3 +-- apps/encryption/tests/Settings/AdminTest.php | 4 +++- apps/encryption/tests/Users/SetupTest.php | 2 +- apps/encryption/tests/UtilTest.php | 2 +- 44 files changed, 75 insertions(+), 47 deletions(-) (limited to 'apps/encryption') diff --git a/apps/encryption/appinfo/app.php b/apps/encryption/appinfo/app.php index 97d7e8f7488..1b5f18813c3 100644 --- a/apps/encryption/appinfo/app.php +++ b/apps/encryption/appinfo/app.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * * @license AGPL-3.0 @@ -18,7 +19,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/encryption/appinfo/routes.php b/apps/encryption/appinfo/routes.php index f7eb7ff5775..b6224f83e2e 100644 --- a/apps/encryption/appinfo/routes.php +++ b/apps/encryption/appinfo/routes.php @@ -1,10 +1,12 @@ * @author Clark Tomlinson + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,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/encryption/lib/AppInfo/Application.php b/apps/encryption/lib/AppInfo/Application.php index 0f5533f934d..730b0afc0eb 100644 --- a/apps/encryption/lib/AppInfo/Application.php +++ b/apps/encryption/lib/AppInfo/Application.php @@ -5,6 +5,8 @@ * @author Bjoern Schiessle * @author Björn Schießle * @author Clark Tomlinson + * @author Joas Schilling + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -19,7 +21,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/encryption/lib/Command/DisableMasterKey.php b/apps/encryption/lib/Command/DisableMasterKey.php index 34d29d2f5fa..2054cf953f7 100644 --- a/apps/encryption/lib/Command/DisableMasterKey.php +++ b/apps/encryption/lib/Command/DisableMasterKey.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 - * along with this program. If not, see . + * along with this program. If not, see . * */ diff --git a/apps/encryption/lib/Command/EnableMasterKey.php b/apps/encryption/lib/Command/EnableMasterKey.php index 10fb65f9b58..fe011abe138 100644 --- a/apps/encryption/lib/Command/EnableMasterKey.php +++ b/apps/encryption/lib/Command/EnableMasterKey.php @@ -16,7 +16,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/encryption/lib/Command/RecoverUser.php b/apps/encryption/lib/Command/RecoverUser.php index 8de105b5382..5d7909a3e98 100644 --- a/apps/encryption/lib/Command/RecoverUser.php +++ b/apps/encryption/lib/Command/RecoverUser.php @@ -2,6 +2,8 @@ /** * @copyright Copyright (c) 2018 Bjoern Schiessle * + * @author Bjoern Schiessle + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -15,7 +17,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/encryption/lib/Controller/RecoveryController.php b/apps/encryption/lib/Controller/RecoveryController.php index 4cf85c6886e..3d96214bdc9 100644 --- a/apps/encryption/lib/Controller/RecoveryController.php +++ b/apps/encryption/lib/Controller/RecoveryController.php @@ -5,6 +5,7 @@ * @author Björn Schießle * @author Clark Tomlinson * @author Lukas Reschke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,7 +19,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/encryption/lib/Controller/SettingsController.php b/apps/encryption/lib/Controller/SettingsController.php index f19f6392565..545f544625b 100644 --- a/apps/encryption/lib/Controller/SettingsController.php +++ b/apps/encryption/lib/Controller/SettingsController.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/encryption/lib/Controller/StatusController.php b/apps/encryption/lib/Controller/StatusController.php index 3a2351db433..d5a60460229 100644 --- a/apps/encryption/lib/Controller/StatusController.php +++ b/apps/encryption/lib/Controller/StatusController.php @@ -19,7 +19,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/encryption/lib/Crypto/Crypt.php b/apps/encryption/lib/Crypto/Crypt.php index c2862387949..45319302bbf 100644 --- a/apps/encryption/lib/Crypto/Crypt.php +++ b/apps/encryption/lib/Crypto/Crypt.php @@ -8,6 +8,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke + * @author Stefan Weiberg * @author Thomas Müller * * @license AGPL-3.0 @@ -22,7 +23,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/encryption/lib/Crypto/DecryptAll.php b/apps/encryption/lib/Crypto/DecryptAll.php index 94db0a543d9..564f1d49888 100644 --- a/apps/encryption/lib/Crypto/DecryptAll.php +++ b/apps/encryption/lib/Crypto/DecryptAll.php @@ -16,7 +16,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/encryption/lib/Crypto/EncryptAll.php b/apps/encryption/lib/Crypto/EncryptAll.php index 586397b82ae..4865f06277e 100644 --- a/apps/encryption/lib/Crypto/EncryptAll.php +++ b/apps/encryption/lib/Crypto/EncryptAll.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Bjoern Schiessle * @author Björn Schießle * @author Kenneth Newwood * @author Morris Jobke @@ -20,7 +21,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/encryption/lib/Crypto/Encryption.php b/apps/encryption/lib/Crypto/Encryption.php index f58718dc401..8b5ec5e1e05 100644 --- a/apps/encryption/lib/Crypto/Encryption.php +++ b/apps/encryption/lib/Crypto/Encryption.php @@ -9,6 +9,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -23,7 +24,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/encryption/lib/Exceptions/MultiKeyDecryptException.php b/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php index 0a2fbe2873d..9bb01249d94 100644 --- a/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php +++ b/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -16,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/encryption/lib/Exceptions/MultiKeyEncryptException.php b/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php index 6cca838ad0d..f4a03d259ca 100644 --- a/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php +++ b/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -16,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/encryption/lib/Exceptions/PrivateKeyMissingException.php b/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php index c25ddf9204b..f7014fa2701 100644 --- a/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php +++ b/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php @@ -18,7 +18,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/encryption/lib/Exceptions/PublicKeyMissingException.php b/apps/encryption/lib/Exceptions/PublicKeyMissingException.php index 9819b872527..d6f12b3669e 100644 --- a/apps/encryption/lib/Exceptions/PublicKeyMissingException.php +++ b/apps/encryption/lib/Exceptions/PublicKeyMissingException.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -16,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/encryption/lib/HookManager.php b/apps/encryption/lib/HookManager.php index 8434b6aaba5..261247f336e 100644 --- a/apps/encryption/lib/HookManager.php +++ b/apps/encryption/lib/HookManager.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/encryption/lib/Hooks/Contracts/IHook.php b/apps/encryption/lib/Hooks/Contracts/IHook.php index c73ea2e7ecc..573a6b10595 100644 --- a/apps/encryption/lib/Hooks/Contracts/IHook.php +++ b/apps/encryption/lib/Hooks/Contracts/IHook.php @@ -16,7 +16,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/encryption/lib/Hooks/UserHooks.php b/apps/encryption/lib/Hooks/UserHooks.php index f3ef96a61b2..209909dd097 100644 --- a/apps/encryption/lib/Hooks/UserHooks.php +++ b/apps/encryption/lib/Hooks/UserHooks.php @@ -5,7 +5,9 @@ * @author Bjoern Schiessle * @author Björn Schießle * @author Clark Tomlinson + * @author Joas Schilling * @author Morris Jobke + * @author Roeland Jago Douma * @author Thomas Müller * * @license AGPL-3.0 @@ -20,7 +22,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/encryption/lib/KeyManager.php b/apps/encryption/lib/KeyManager.php index dd0ecbba448..3b06cbe2348 100644 --- a/apps/encryption/lib/KeyManager.php +++ b/apps/encryption/lib/KeyManager.php @@ -2,11 +2,13 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Arthur Schiwon * @author Bjoern Schiessle * @author Björn Schießle * @author Clark Tomlinson * @author Lukas Reschke * @author Morris Jobke + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * @@ -22,7 +24,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/encryption/lib/Migration/SetMasterKeyStatus.php b/apps/encryption/lib/Migration/SetMasterKeyStatus.php index e53315082b9..49384be3328 100644 --- a/apps/encryption/lib/Migration/SetMasterKeyStatus.php +++ b/apps/encryption/lib/Migration/SetMasterKeyStatus.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 - * along with this program. If not, see . + * along with this program. If not, see . * */ diff --git a/apps/encryption/lib/Recovery.php b/apps/encryption/lib/Recovery.php index 2e4bddc8e5b..8f50a3a5d28 100644 --- a/apps/encryption/lib/Recovery.php +++ b/apps/encryption/lib/Recovery.php @@ -4,7 +4,9 @@ * * @author Björn Schießle * @author Clark Tomlinson + * @author Joas Schilling * @author Lukas Reschke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,7 +20,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/encryption/lib/Session.php b/apps/encryption/lib/Session.php index 016b266f052..58357b2efe1 100644 --- a/apps/encryption/lib/Session.php +++ b/apps/encryption/lib/Session.php @@ -6,6 +6,7 @@ * @author Björn Schießle * @author Clark Tomlinson * @author Lukas Reschke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -19,7 +20,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/encryption/lib/Settings/Admin.php b/apps/encryption/lib/Settings/Admin.php index e98aa129ab6..91ce234ef58 100644 --- a/apps/encryption/lib/Settings/Admin.php +++ b/apps/encryption/lib/Settings/Admin.php @@ -3,6 +3,8 @@ * @copyright Copyright (c) 2016 Arthur Schiwon * * @author Arthur Schiwon + * @author Julius Härtl + * @author Roeland Jago Douma * * @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/encryption/lib/Settings/Personal.php b/apps/encryption/lib/Settings/Personal.php index 5b01c224538..90d54155c27 100644 --- a/apps/encryption/lib/Settings/Personal.php +++ b/apps/encryption/lib/Settings/Personal.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 - * along with this program. If not, see . + * along with this program. If not, see . * */ diff --git a/apps/encryption/lib/Users/Setup.php b/apps/encryption/lib/Users/Setup.php index b757228a7da..0ff488ae582 100644 --- a/apps/encryption/lib/Users/Setup.php +++ b/apps/encryption/lib/Users/Setup.php @@ -19,7 +19,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/encryption/lib/Util.php b/apps/encryption/lib/Util.php index 12087e1cce8..6b3ba80481b 100644 --- a/apps/encryption/lib/Util.php +++ b/apps/encryption/lib/Util.php @@ -5,6 +5,7 @@ * @author Bjoern Schiessle * @author Björn Schießle * @author Clark Tomlinson + * @author Morris Jobke * @author Phil Davis * * @license AGPL-3.0 @@ -19,7 +20,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/encryption/tests/Command/TestEnableMasterKey.php b/apps/encryption/tests/Command/TestEnableMasterKey.php index 927cc1328df..3d8831bd7fb 100644 --- a/apps/encryption/tests/Command/TestEnableMasterKey.php +++ b/apps/encryption/tests/Command/TestEnableMasterKey.php @@ -5,6 +5,7 @@ * @author Björn Schießle * @author Joas Schilling * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,7 +19,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/encryption/tests/Controller/RecoveryControllerTest.php b/apps/encryption/tests/Controller/RecoveryControllerTest.php index 5737f8e86ca..e3614b918c3 100644 --- a/apps/encryption/tests/Controller/RecoveryControllerTest.php +++ b/apps/encryption/tests/Controller/RecoveryControllerTest.php @@ -5,6 +5,7 @@ * @author Clark Tomlinson * @author Joas Schilling * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,7 +19,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/encryption/tests/Controller/SettingsControllerTest.php b/apps/encryption/tests/Controller/SettingsControllerTest.php index bc2a7ed853b..62c5ebf608c 100644 --- a/apps/encryption/tests/Controller/SettingsControllerTest.php +++ b/apps/encryption/tests/Controller/SettingsControllerTest.php @@ -19,7 +19,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/encryption/tests/Controller/StatusControllerTest.php b/apps/encryption/tests/Controller/StatusControllerTest.php index ccf33ffd37b..8e217bfa473 100644 --- a/apps/encryption/tests/Controller/StatusControllerTest.php +++ b/apps/encryption/tests/Controller/StatusControllerTest.php @@ -20,7 +20,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/encryption/tests/Crypto/CryptTest.php b/apps/encryption/tests/Crypto/CryptTest.php index 053c4ce8f03..7428b3fe1af 100644 --- a/apps/encryption/tests/Crypto/CryptTest.php +++ b/apps/encryption/tests/Crypto/CryptTest.php @@ -2,7 +2,6 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * - * @author Bjoern Schiessle * @author Björn Schießle * @author Joas Schilling * @author Lukas Reschke @@ -21,7 +20,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/encryption/tests/Crypto/DecryptAllTest.php b/apps/encryption/tests/Crypto/DecryptAllTest.php index 1b94d1d96cf..f84892a7c91 100644 --- a/apps/encryption/tests/Crypto/DecryptAllTest.php +++ b/apps/encryption/tests/Crypto/DecryptAllTest.php @@ -5,6 +5,7 @@ * @author Björn Schießle * @author Joas Schilling * @author Morris Jobke + * @author Roeland Jago Douma * * @license AGPL-3.0 * @@ -18,7 +19,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/encryption/tests/Crypto/EncryptAllTest.php b/apps/encryption/tests/Crypto/EncryptAllTest.php index f8be7210054..1a409e6508e 100644 --- a/apps/encryption/tests/Crypto/EncryptAllTest.php +++ b/apps/encryption/tests/Crypto/EncryptAllTest.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Bjoern Schiessle * @author Björn Schießle * @author Joas Schilling * @author Kenneth Newwood @@ -20,7 +21,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/encryption/tests/Crypto/EncryptionTest.php b/apps/encryption/tests/Crypto/EncryptionTest.php index 94e0729317f..7b563c06c02 100644 --- a/apps/encryption/tests/Crypto/EncryptionTest.php +++ b/apps/encryption/tests/Crypto/EncryptionTest.php @@ -20,7 +20,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/encryption/tests/HookManagerTest.php b/apps/encryption/tests/HookManagerTest.php index 39797942256..b41cdf1720c 100644 --- a/apps/encryption/tests/HookManagerTest.php +++ b/apps/encryption/tests/HookManagerTest.php @@ -19,7 +19,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/encryption/tests/Hooks/UserHooksTest.php b/apps/encryption/tests/Hooks/UserHooksTest.php index 99043a8ce97..4d35d546317 100644 --- a/apps/encryption/tests/Hooks/UserHooksTest.php +++ b/apps/encryption/tests/Hooks/UserHooksTest.php @@ -21,7 +21,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/encryption/tests/KeyManagerTest.php b/apps/encryption/tests/KeyManagerTest.php index fd2cac6461b..a9886a0b9ec 100644 --- a/apps/encryption/tests/KeyManagerTest.php +++ b/apps/encryption/tests/KeyManagerTest.php @@ -24,7 +24,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/encryption/tests/RecoveryTest.php b/apps/encryption/tests/RecoveryTest.php index c9216e7778a..a76d5f7d562 100644 --- a/apps/encryption/tests/RecoveryTest.php +++ b/apps/encryption/tests/RecoveryTest.php @@ -21,7 +21,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/encryption/tests/SessionTest.php b/apps/encryption/tests/SessionTest.php index 5a0a65c77b3..21de1ee971c 100644 --- a/apps/encryption/tests/SessionTest.php +++ b/apps/encryption/tests/SessionTest.php @@ -7,7 +7,6 @@ * @author Clark Tomlinson * @author Joas Schilling * @author Roeland Jago Douma - * @author Thomas Müller * * @license AGPL-3.0 * @@ -21,7 +20,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/encryption/tests/Settings/AdminTest.php b/apps/encryption/tests/Settings/AdminTest.php index 8f68f06b6bd..78ea6158fd2 100644 --- a/apps/encryption/tests/Settings/AdminTest.php +++ b/apps/encryption/tests/Settings/AdminTest.php @@ -2,8 +2,10 @@ /** * @copyright Copyright (c) 2016 Lukas Reschke * + * @author Julius Härtl * @author Lukas Reschke * @author Morris Jobke + * @author Roeland Jago Douma * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,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/encryption/tests/Users/SetupTest.php b/apps/encryption/tests/Users/SetupTest.php index 4111498ac64..44fb1b40bda 100644 --- a/apps/encryption/tests/Users/SetupTest.php +++ b/apps/encryption/tests/Users/SetupTest.php @@ -20,7 +20,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/encryption/tests/UtilTest.php b/apps/encryption/tests/UtilTest.php index 77c070d7150..cade0b2f823 100644 --- a/apps/encryption/tests/UtilTest.php +++ b/apps/encryption/tests/UtilTest.php @@ -21,7 +21,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 * */ -- cgit v1.2.3