diff options
author | Joas Schilling <coding@schilljs.com> | 2024-03-05 12:56:38 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-03-05 12:56:38 +0100 |
commit | 92fc12918ea6c64ba3dc1303a0ec4299e6a39096 (patch) | |
tree | 48fca594ea466db7fdfa711345e25ea6b25ff1ea | |
parent | ad8cb2ce7f4f619158fc7ac6a7ea414d1508658e (diff) | |
download | nextcloud-server-92fc12918ea6c64ba3dc1303a0ec4299e6a39096.tar.gz nextcloud-server-92fc12918ea6c64ba3dc1303a0ec4299e6a39096.zip |
fix(migrations): Help developers to add description and copyright info
Signed-off-by: Joas Schilling <coding@schilljs.com>
4 files changed, 9 insertions, 9 deletions
diff --git a/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php b/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php index 71fdb536b1a..4e3e44a5f21 100644 --- a/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php +++ b/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php @@ -3,9 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2023 Your name <your@email.com> + * @copyright Copyright (c) 2023 Côme Chilliet <come.chilliet@nextcloud.com> * - * @author Your name <your@email.com> + * @author Côme Chilliet <come.chilliet@nextcloud.com> * * @license GNU AGPL version 3 or any later version * diff --git a/apps/user_ldap/lib/Migration/Version1190Date20230706134109.php b/apps/user_ldap/lib/Migration/Version1190Date20230706134109.php index bc88dc2beb9..2cb68e25dc5 100644 --- a/apps/user_ldap/lib/Migration/Version1190Date20230706134109.php +++ b/apps/user_ldap/lib/Migration/Version1190Date20230706134109.php @@ -3,9 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2023 Your name <your@email.com> + * @copyright Copyright (c) 2023 Côme Chilliet <come.chilliet@nextcloud.com> * - * @author Your name <your@email.com> + * @author Côme Chilliet <come.chilliet@nextcloud.com> * * @license GNU AGPL version 3 or any later version * diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 879844dd579..47f65b5a11b 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -45,9 +45,9 @@ class GenerateCommand extends Command implements CompletionAwareInterface { declare(strict_types=1); /** - * @copyright Copyright (c) {{year}} Your name <your@email.com> + * @copyright Copyright (c) {{year}} FIXME Your name <your@email.com> * - * @author Your name <your@email.com> + * FIXME @author Your name <your@email.com> * * @license GNU AGPL version 3 or any later version * @@ -74,7 +74,7 @@ use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** - * Auto-generated migration step: Please modify to your needs! + * FIXME Auto-generated migration step: Please modify to your needs! */ class {{classname}} extends SimpleMigrationStep { diff --git a/core/Migrations/Version27000Date20220613163520.php b/core/Migrations/Version27000Date20220613163520.php index 4217f3b3270..6c4bccacd91 100644 --- a/core/Migrations/Version27000Date20220613163520.php +++ b/core/Migrations/Version27000Date20220613163520.php @@ -3,9 +3,9 @@ declare(strict_types=1); /** - * @copyright Copyright (c) 2022 Your name <your@email.com> + * @copyright Copyright (c) 2022 Robin Appelman <robin@icewind.nl> * - * @author Your name <your@email.com> + * @author Robin Appelman <robin@icewind.nl> * * @license GNU AGPL version 3 or any later version * |