diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-04-09 13:44:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 13:44:39 +0200 |
commit | 19e97e86c69ab128191439d6a17dacb5a630cf98 (patch) | |
tree | 95b913a59a6512e54ef848aa03095cdfdc7a92c5 /core | |
parent | 813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff) | |
parent | 2a529e453a7de7f51ab72ac48f947fa9d2afd18d (diff) | |
download | nextcloud-server-19e97e86c69ab128191439d6a17dacb5a630cf98.tar.gz nextcloud-server-19e97e86c69ab128191439d6a17dacb5a630cf98.zip |
Merge pull request #20379 from nextcloud/techdebt/blank-lines
Use one blank line after the opening tag and namespace declaration
Diffstat (limited to 'core')
8 files changed, 2 insertions, 6 deletions
diff --git a/core/Command/Db/Migrations/ExecuteCommand.php b/core/Command/Db/Migrations/ExecuteCommand.php index 1104818e710..0f2709646ba 100644 --- a/core/Command/Db/Migrations/ExecuteCommand.php +++ b/core/Command/Db/Migrations/ExecuteCommand.php @@ -23,7 +23,6 @@ namespace OC\Core\Command\Db\Migrations; - use OC\DB\MigrationService; use OC\Migration\ConsoleOutput; use OCP\App\IAppManager; diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 6e3b26f583c..a40cd800dff 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -25,7 +25,6 @@ namespace OC\Core\Command\Db\Migrations; - use OC\DB\MigrationService; use OC\Migration\ConsoleOutput; use OCP\App\IAppManager; diff --git a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php index 34c91ad6b04..b3d826c1e5b 100644 --- a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php +++ b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php @@ -24,7 +24,6 @@ namespace OC\Core\Command\Db\Migrations; - use Doctrine\DBAL\Schema\Schema; use OC\DB\MDB2SchemaReader; use OC\DB\MigrationService; diff --git a/core/Command/Db/Migrations/MigrateCommand.php b/core/Command/Db/Migrations/MigrateCommand.php index e484dbd3f4f..c9ba604ae7e 100644 --- a/core/Command/Db/Migrations/MigrateCommand.php +++ b/core/Command/Db/Migrations/MigrateCommand.php @@ -22,7 +22,6 @@ namespace OC\Core\Command\Db\Migrations; - use OC\DB\MigrationService; use OC\Migration\ConsoleOutput; use OCP\IDBConnection; diff --git a/core/Command/Encryption/SetDefaultModule.php b/core/Command/Encryption/SetDefaultModule.php index eb9f3718b1d..5f73792d99b 100644 --- a/core/Command/Encryption/SetDefaultModule.php +++ b/core/Command/Encryption/SetDefaultModule.php @@ -23,7 +23,6 @@ namespace OC\Core\Command\Encryption; - use OCP\Encryption\IManager; use OCP\IConfig; use Symfony\Component\Console\Command\Command; diff --git a/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php b/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php index aa252b8bbb6..39f1bb48812 100644 --- a/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php +++ b/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php @@ -27,7 +27,6 @@ declare(strict_types=1); namespace OC\Core\Command\Maintenance\Mimetype; - class GenerateMimetypeFileBuilder { /** diff --git a/core/Controller/WebAuthnController.php b/core/Controller/WebAuthnController.php index 4cbea8390d5..1d667311ff7 100644 --- a/core/Controller/WebAuthnController.php +++ b/core/Controller/WebAuthnController.php @@ -1,4 +1,5 @@ <?php + declare(strict_types=1); /** * @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl> diff --git a/core/Migrations/Version19000Date20200211083441.php b/core/Migrations/Version19000Date20200211083441.php index ef4d4fde54f..72bb26b02fe 100644 --- a/core/Migrations/Version19000Date20200211083441.php +++ b/core/Migrations/Version19000Date20200211083441.php @@ -1,4 +1,5 @@ <?php + declare(strict_types=1); namespace OC\Core\Migrations; |