Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Nextcloud is written by:
- Alecks Gates <[email protected]>
- Alejandro Varela <[email protected]>
- Alex Weirig <[email protected]>
- Alexander A. Klimov <[email protected]>
- Alexander Bergolth <[email protected]>
- Alexey Pyltsyn <[email protected]>
- Allan Nordhøy <[email protected]>
Expand All @@ -30,6 +31,7 @@ Nextcloud is written by:
- Bastien Ho <[email protected]>
- Benjamin Diele <[email protected]>
- Benjamin Liles <[email protected]>
- Bernhard Ostertag <[email protected]>
- Bernhard Posselt <[email protected]>
- Bernhard Reiter <[email protected]>
- Birk Borkason <[email protected]>
Expand Down Expand Up @@ -139,6 +141,7 @@ Nextcloud is written by:
- Kawohl <[email protected]>
- Kenneth Newwood <[email protected]>
- Kevin Ndung'u <[email protected]>
- Kim Brose <[email protected]>
- Klaas Freitag <[email protected]>
- Knut Ahlers <[email protected]>
- Ko- <[email protected]>
Expand Down Expand Up @@ -336,6 +339,7 @@ Nextcloud is written by:
- duritong <[email protected]>
- eduardo <[email protected]>
- enoch <[email protected]>
- exner104 <[email protected]>
- fabian <[email protected]>
- felixboehm <[email protected]>
- fnuesse <[email protected]>
Expand Down Expand Up @@ -370,6 +374,7 @@ Nextcloud is written by:
- scolebrook <[email protected]>
- shkdee <[email protected]>
- sidey79 <[email protected]>
- simonspa <[email protected]>
- sualko <[email protected]>
- tbartenstein <[email protected]>
- tbelau666 <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions apps/files/tests/Controller/ViewControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @author Daniel Kesselberg <[email protected]>
* @author Joas Schilling <[email protected]>
* @author John Molakvoæ (skjnldsv) <[email protected]>
* @author Julius Härtl <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Michael Weimann <[email protected]>
* @author Morris Jobke <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions apps/files_sharing/lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @author Björn Schießle <[email protected]>
* @author Joas Schilling <[email protected]>
* @author John Molakvoæ (skjnldsv) <[email protected]>
* @author Julius Härtl <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Morris Jobke <[email protected]>
* @author Robin Appelman <[email protected]>
Expand Down
4 changes: 3 additions & 1 deletion apps/files_sharing/lib/Controller/AcceptController.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <[email protected]>
*
Expand All @@ -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 <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

Expand Down
1 change: 1 addition & 0 deletions apps/files_sharing/lib/Controller/ShareAPIController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @author Daniel Calviño Sánchez <[email protected]>
* @author Joas Schilling <[email protected]>
* @author John Molakvoæ (skjnldsv) <[email protected]>
* @author Julius Härtl <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Maxence Lange <[email protected]>
* @author Maxence Lange <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions apps/files_trashbin/lib/Controller/PreviewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @author Morris Jobke <[email protected]>
* @author Robin Appelman <[email protected]>
* @author Roeland Jago Douma <[email protected]>
* @author simonspa <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
Expand Down
26 changes: 1 addition & 25 deletions apps/settings/lib/Controller/ChangePasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

// FIXME: disabled for now to be able to inject IGroupManager and also use
// getSubAdmin()
//declare(strict_types=1);
/**
*
*
* @author Joas Schilling <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Matthew Setter <[email protected]>
* @author Morris Jobke <[email protected]>
* @author Roeland Jago Douma <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* 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 <http://www.gnu.org/licenses/>.
*
*/

namespace OCA\Settings\Controller;

Expand Down
35 changes: 1 addition & 34 deletions apps/settings/lib/Controller/UsersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,43 +23,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/

// FIXME: disabled for now to be able to inject IGroupManager and also use
// getSubAdmin()
//declare(strict_types=1);
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Arthur Schiwon <[email protected]>
* @author Bjoern Schiessle <[email protected]>
* @author Björn Schießle <[email protected]>
* @author Christoph Wurst <[email protected]>
* @author Clark Tomlinson <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Morris Jobke <[email protected]>
* @author Robin Appelman <[email protected]>
* @author Roeland Jago Douma <[email protected]>
* @author Thomas Müller <[email protected]>
* @author Thomas Pulzer <[email protected]>
* @author Tobia De Koninck <[email protected]>
* @author Tobias Kaminsky <[email protected]>
* @author Vincent Petry <[email protected]>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* 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 <http://www.gnu.org/licenses/>
*
*/

namespace OCA\Settings\Controller;

Expand Down
1 change: 1 addition & 0 deletions apps/sharebymail/lib/ShareByMailProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @author Bjoern Schiessle <[email protected]>
* @author comradekingu <[email protected]>
* @author Daniel Calviño Sánchez <[email protected]>
* @author exner104 <[email protected]>
* @author Frederic Werner <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Lukas Reschke <[email protected]>
Expand Down
3 changes: 2 additions & 1 deletion build/license.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @author Thomas Müller
*
Expand All @@ -15,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 <http://www.gnu.org/licenses/>
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
class Licenses
Expand Down
1 change: 1 addition & 0 deletions core/Command/Db/ConvertType.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*
* @author Andreas Fischer <[email protected]>
* @author Bart Visscher <[email protected]>
* @author Bernhard Ostertag <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Łukasz Buśko <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions core/Command/User/Setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Joas Schilling <[email protected]>
* @author Kim Brose <[email protected]>
* @author Roeland Jago Douma <[email protected]>
*
* @license AGPL-3.0
Expand Down
1 change: 1 addition & 0 deletions core/Controller/CSRFTokenController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @copyright 2017 Christoph Wurst <[email protected]>
*
* @author Christoph Wurst <[email protected]>
* @author Roeland Jago Douma <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
Expand Down
1 change: 1 addition & 0 deletions lib/private/App/AppStore/Fetcher/Fetcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* @copyright Copyright (c) 2016 Lukas Reschke <[email protected]>
*
* @author Daniel Kesselberg <[email protected]>
* @author Georg Ehrke <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Lukas Reschke <[email protected]>
* @author Morris Jobke <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* @copyright 2020 Christoph Wurst <[email protected]>
*
* @author 2020 Christoph Wurst <[email protected]>
* @author Christoph Wurst <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
Expand All @@ -20,7 +20,8 @@
* 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 <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

namespace OC\Authentication\Listeners;
Expand Down
1 change: 1 addition & 0 deletions lib/private/Avatar/UserAvatar.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @copyright Copyright (c) 2018, Michael Weimann <[email protected]>
*
* @author Arthur Schiwon <[email protected]>
* @author Joas Schilling <[email protected]>
* @author Michael Weimann <[email protected]>
*
* @license GNU AGPL version 3 or any later version
Expand Down
1 change: 1 addition & 0 deletions lib/private/DirectEditing/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/**
* @copyright Copyright (c) 2019 Julius Härtl <[email protected]>
*
* @author Christoph Wurst <[email protected]>
* @author Julius Härtl <[email protected]>
* @author Tobias Kaminsky <[email protected]>
*
Expand Down
1 change: 1 addition & 0 deletions lib/private/Preview/Movie.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Alexander A. Klimov <[email protected]>
* @author Daniel Schneider <[email protected]>
* @author Georg Ehrke <[email protected]>
* @author Joas Schilling <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/**
* @copyright Copyright (c) 2018 Julius Härtl <[email protected]>
*
* @author Daniel Calviño Sánchez <[email protected]>
* @author John Molakvoæ (skjnldsv) <[email protected]>
* @author Julius Härtl <[email protected]>
* @author Roeland Jago Douma <[email protected]>
Expand Down
11 changes: 5 additions & 6 deletions lib/public/Lock/ManuallyLockedException.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<?php declare(strict_types=1);

<?php

declare(strict_types=1);

/**
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
* @copyright 2019, Maxence Lange <[email protected]>
*
* @author Maxence Lange <[email protected]>
* @copyright 2019, Maxence Lange <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
Expand All @@ -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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

Expand Down
4 changes: 3 additions & 1 deletion lib/public/WorkflowEngine/Events/RegisterChecksEvent.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <[email protected]>
*
Expand All @@ -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 <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <[email protected]>
*
Expand All @@ -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 <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <[email protected]>
*
Expand All @@ -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 <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

Expand Down
1 change: 1 addition & 0 deletions lib/public/WorkflowEngine/IManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*
* @author Arthur Schiwon <[email protected]>
* @author Morris Jobke <[email protected]>
* @author Roeland Jago Douma <[email protected]>
*
* @license GNU AGPL version 3 or any later version
*
Expand Down