From 41b5e5923a44965e435d35d01b5009abb2dd5c97 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 9 Apr 2020 11:48:10 +0200 Subject: Use exactly one empty line after the namespace declaration For PSR2 Signed-off-by: Christoph Wurst --- tests/lib/AppFramework/Db/EntityTest.php | 1 - tests/lib/AppFramework/Db/MapperTestUtility.php | 1 - tests/lib/AppFramework/DependencyInjection/DIContainerTest.php | 1 - tests/lib/AppFramework/Http/DataResponseTest.php | 1 - tests/lib/AppFramework/Http/DownloadResponseTest.php | 1 - tests/lib/AppFramework/Http/JSONResponseTest.php | 1 - tests/lib/AppFramework/Http/OCSResponseTest.php | 1 - tests/lib/AppFramework/Http/ResponseTest.php | 1 - tests/lib/AppFramework/Http/StreamResponseTest.php | 1 - tests/lib/AppFramework/OCS/BaseResponseTest.php | 1 - tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php | 1 - 11 files changed, 11 deletions(-) (limited to 'tests/lib/AppFramework') diff --git a/tests/lib/AppFramework/Db/EntityTest.php b/tests/lib/AppFramework/Db/EntityTest.php index 8676bf74cb0..b2113789810 100644 --- a/tests/lib/AppFramework/Db/EntityTest.php +++ b/tests/lib/AppFramework/Db/EntityTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Db; - use OCP\AppFramework\Db\Entity; use PHPUnit\Framework\Constraint\IsType; diff --git a/tests/lib/AppFramework/Db/MapperTestUtility.php b/tests/lib/AppFramework/Db/MapperTestUtility.php index 11905a9bbbb..ebcc4a11e26 100644 --- a/tests/lib/AppFramework/Db/MapperTestUtility.php +++ b/tests/lib/AppFramework/Db/MapperTestUtility.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Db; - /** * Simple utility class for testing mappers */ diff --git a/tests/lib/AppFramework/DependencyInjection/DIContainerTest.php b/tests/lib/AppFramework/DependencyInjection/DIContainerTest.php index 95d368a448e..b8cf35dfb6e 100644 --- a/tests/lib/AppFramework/DependencyInjection/DIContainerTest.php +++ b/tests/lib/AppFramework/DependencyInjection/DIContainerTest.php @@ -25,7 +25,6 @@ namespace Test\AppFramework\DependencyInjection; - use OC\AppFramework\DependencyInjection\DIContainer; use OC\AppFramework\Http\Request; use OC\AppFramework\Middleware\Security\SecurityMiddleware; diff --git a/tests/lib/AppFramework/Http/DataResponseTest.php b/tests/lib/AppFramework/Http/DataResponseTest.php index 7af11807d87..cd7b64a1caa 100644 --- a/tests/lib/AppFramework/Http/DataResponseTest.php +++ b/tests/lib/AppFramework/Http/DataResponseTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataResponse; diff --git a/tests/lib/AppFramework/Http/DownloadResponseTest.php b/tests/lib/AppFramework/Http/DownloadResponseTest.php index 5f816eaeb76..b3437a351f9 100644 --- a/tests/lib/AppFramework/Http/DownloadResponseTest.php +++ b/tests/lib/AppFramework/Http/DownloadResponseTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http\DownloadResponse; class ChildDownloadResponse extends DownloadResponse { diff --git a/tests/lib/AppFramework/Http/JSONResponseTest.php b/tests/lib/AppFramework/Http/JSONResponseTest.php index 2a0978db62a..56e6d43096d 100644 --- a/tests/lib/AppFramework/Http/JSONResponseTest.php +++ b/tests/lib/AppFramework/Http/JSONResponseTest.php @@ -25,7 +25,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http; use OCP\AppFramework\Http\JSONResponse; diff --git a/tests/lib/AppFramework/Http/OCSResponseTest.php b/tests/lib/AppFramework/Http/OCSResponseTest.php index 223248c8737..ec1b422ddd9 100644 --- a/tests/lib/AppFramework/Http/OCSResponseTest.php +++ b/tests/lib/AppFramework/Http/OCSResponseTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http\OCSResponse; class OCSResponseTest extends \Test\TestCase { diff --git a/tests/lib/AppFramework/Http/ResponseTest.php b/tests/lib/AppFramework/Http/ResponseTest.php index 86a909b7688..0a2dc84d411 100644 --- a/tests/lib/AppFramework/Http/ResponseTest.php +++ b/tests/lib/AppFramework/Http/ResponseTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Utility\ITimeFactory; diff --git a/tests/lib/AppFramework/Http/StreamResponseTest.php b/tests/lib/AppFramework/Http/StreamResponseTest.php index b66d9c5ed1d..6257769d927 100644 --- a/tests/lib/AppFramework/Http/StreamResponseTest.php +++ b/tests/lib/AppFramework/Http/StreamResponseTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Http; - use OCP\AppFramework\Http; use OCP\AppFramework\Http\IOutput; use OCP\AppFramework\Http\StreamResponse; diff --git a/tests/lib/AppFramework/OCS/BaseResponseTest.php b/tests/lib/AppFramework/OCS/BaseResponseTest.php index 8a86ae13e79..18a85788af2 100644 --- a/tests/lib/AppFramework/OCS/BaseResponseTest.php +++ b/tests/lib/AppFramework/OCS/BaseResponseTest.php @@ -26,7 +26,6 @@ declare(strict_types=1); namespace Test\AppFramework\Middleware; - use OC\AppFramework\OCS\BaseResponse; class BaseResponseTest extends \Test\TestCase { diff --git a/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php b/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php index 5a3c3f2a007..5c0e8c6b223 100644 --- a/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php +++ b/tests/lib/AppFramework/Utility/ControllerMethodReflectorTest.php @@ -23,7 +23,6 @@ namespace Test\AppFramework\Utility; - use OC\AppFramework\Utility\ControllerMethodReflector; class BaseController { -- cgit v1.2.3 From 2a529e453a7de7f51ab72ac48f947fa9d2afd18d Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 9 Apr 2020 11:50:14 +0200 Subject: Use a blank line after the opening tag Signed-off-by: Christoph Wurst --- apps/settings/lib/Controller/WebAuthnController.php | 1 + apps/settings/lib/Settings/Personal/Security/WebAuthn.php | 1 + apps/workflowengine/lib/Check/FileName.php | 1 + apps/workflowengine/lib/Check/TFileCheck.php | 1 + apps/workflowengine/lib/Command/Index.php | 1 + apps/workflowengine/lib/Controller/AWorkflowController.php | 1 + apps/workflowengine/lib/Controller/GlobalWorkflowsController.php | 1 + apps/workflowengine/lib/Controller/UserWorkflowsController.php | 1 + apps/workflowengine/lib/Entity/File.php | 1 + apps/workflowengine/lib/Helper/LogContext.php | 1 + apps/workflowengine/lib/Helper/ScopeContext.php | 1 + .../lib/Migration/PopulateNewlyIntroducedDatabaseFields.php | 1 + apps/workflowengine/lib/Service/Logger.php | 1 + apps/workflowengine/lib/Service/RuleMatcher.php | 1 + apps/workflowengine/lib/Settings/ASettings.php | 1 + apps/workflowengine/lib/Settings/Admin.php | 1 + apps/workflowengine/lib/Settings/Personal.php | 1 + core/Controller/WebAuthnController.php | 1 + core/Migrations/Version19000Date20200211083441.php | 1 + lib/private/Authentication/Events/LoginFailed.php | 1 + lib/private/Authentication/Listeners/LoginFailedListener.php | 1 + lib/private/Authentication/Login/WebAuthnChain.php | 1 + lib/private/Authentication/Login/WebAuthnLoginCommand.php | 1 + lib/private/Authentication/WebAuthn/CredentialRepository.php | 1 + lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php | 1 + lib/private/Authentication/WebAuthn/Manager.php | 1 + lib/public/Authentication/Events/LoginFailedEvent.php | 1 + tests/Core/Command/Apps/AppsDisableTest.php | 1 + tests/Core/Command/Apps/AppsEnableTest.php | 1 + tests/Core/Controller/AppPasswordControllerTest.php | 1 + tests/Core/Controller/ClientFlowLoginV2ControllerTest.php | 1 + tests/Core/Controller/SvgControllerTest.php | 1 + tests/Core/Controller/WipeControllerTest.php | 1 + tests/bootstrap.php | 1 + tests/lib/App/AppManagerTest.php | 4 +++- tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php | 1 + tests/lib/AppFramework/Http/FeaturePolicyTest.php | 1 + tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php | 1 + tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php | 1 + .../AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php | 1 + tests/lib/Authentication/Events/RemoteWipeFinishedTest.php | 4 +++- tests/lib/Authentication/Events/RemoteWipeStartedTest.php | 4 +++- tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php | 4 +++- tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php | 4 +++- .../Authentication/Listeners/RemoteWipeNotificationsListenerTest.php | 4 +++- tests/lib/Authentication/Token/ManagerTest.php | 4 +++- tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php | 1 + tests/lib/Authentication/Token/PublicKeyTokenTest.php | 1 + tests/lib/Authentication/Token/RemoteWipeTest.php | 4 +++- .../Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php | 1 + tests/lib/Authentication/TwoFactorAuth/ProviderLoaderTest.php | 1 + tests/lib/Authentication/TwoFactorAuth/ProviderSetTest.php | 1 + tests/lib/Authentication/TwoFactorAuth/RegistryTest.php | 4 +++- tests/lib/Avatar/GuestAvatarTest.php | 1 + tests/lib/Collaboration/Resources/ManagerTest.php | 1 + tests/lib/Collaboration/Resources/ProviderManagerTest.php | 1 + tests/lib/Files/ObjectStore/FailDeleteObjectStore.php | 4 +++- tests/lib/Files/ObjectStore/FailWriteObjectStore.php | 4 +++- tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php | 4 +++- tests/lib/Files/SimpleFS/InMemoryFileTest.php | 1 + tests/lib/MemoryInfoTest.php | 1 + tests/lib/Notification/DummyApp.php | 1 + tests/lib/Notification/DummyNotifier.php | 1 + tests/lib/Notification/NotificationTest.php | 1 + tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php | 1 + tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php | 1 + tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php | 1 + tests/lib/Template/IconsCacherTest.php | 1 + tests/preseed-config.php | 1 + 69 files changed, 93 insertions(+), 12 deletions(-) (limited to 'tests/lib/AppFramework') diff --git a/apps/settings/lib/Controller/WebAuthnController.php b/apps/settings/lib/Controller/WebAuthnController.php index e9b45105a81..cbc396b675f 100644 --- a/apps/settings/lib/Controller/WebAuthnController.php +++ b/apps/settings/lib/Controller/WebAuthnController.php @@ -1,4 +1,5 @@ diff --git a/apps/settings/lib/Settings/Personal/Security/WebAuthn.php b/apps/settings/lib/Settings/Personal/Security/WebAuthn.php index e4e2b3fe935..4608e472ff4 100644 --- a/apps/settings/lib/Settings/Personal/Security/WebAuthn.php +++ b/apps/settings/lib/Settings/Personal/Security/WebAuthn.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Check/FileName.php b/apps/workflowengine/lib/Check/FileName.php index b17355fc486..9f2a78aef62 100644 --- a/apps/workflowengine/lib/Check/FileName.php +++ b/apps/workflowengine/lib/Check/FileName.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Check/TFileCheck.php b/apps/workflowengine/lib/Check/TFileCheck.php index afaf46b52bf..90eb7dc616c 100644 --- a/apps/workflowengine/lib/Check/TFileCheck.php +++ b/apps/workflowengine/lib/Check/TFileCheck.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Command/Index.php b/apps/workflowengine/lib/Command/Index.php index 7f3af3c0811..5f901c262df 100644 --- a/apps/workflowengine/lib/Command/Index.php +++ b/apps/workflowengine/lib/Command/Index.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Controller/AWorkflowController.php b/apps/workflowengine/lib/Controller/AWorkflowController.php index 8d51600c7b2..767ae79c5fd 100644 --- a/apps/workflowengine/lib/Controller/AWorkflowController.php +++ b/apps/workflowengine/lib/Controller/AWorkflowController.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Controller/GlobalWorkflowsController.php b/apps/workflowengine/lib/Controller/GlobalWorkflowsController.php index 6d49c87b83e..45930c34c5b 100644 --- a/apps/workflowengine/lib/Controller/GlobalWorkflowsController.php +++ b/apps/workflowengine/lib/Controller/GlobalWorkflowsController.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Controller/UserWorkflowsController.php b/apps/workflowengine/lib/Controller/UserWorkflowsController.php index 9bb7fc4778a..226746a2264 100644 --- a/apps/workflowengine/lib/Controller/UserWorkflowsController.php +++ b/apps/workflowengine/lib/Controller/UserWorkflowsController.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Entity/File.php b/apps/workflowengine/lib/Entity/File.php index 84e750815b6..78178ff759d 100644 --- a/apps/workflowengine/lib/Entity/File.php +++ b/apps/workflowengine/lib/Entity/File.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Helper/LogContext.php b/apps/workflowengine/lib/Helper/LogContext.php index fa69cde4009..231294d8c74 100644 --- a/apps/workflowengine/lib/Helper/LogContext.php +++ b/apps/workflowengine/lib/Helper/LogContext.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Helper/ScopeContext.php b/apps/workflowengine/lib/Helper/ScopeContext.php index fecc4db0ed7..e0251131a01 100644 --- a/apps/workflowengine/lib/Helper/ScopeContext.php +++ b/apps/workflowengine/lib/Helper/ScopeContext.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Migration/PopulateNewlyIntroducedDatabaseFields.php b/apps/workflowengine/lib/Migration/PopulateNewlyIntroducedDatabaseFields.php index f715ebc7ef7..3c8d4ce81f8 100644 --- a/apps/workflowengine/lib/Migration/PopulateNewlyIntroducedDatabaseFields.php +++ b/apps/workflowengine/lib/Migration/PopulateNewlyIntroducedDatabaseFields.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Service/Logger.php b/apps/workflowengine/lib/Service/Logger.php index dee09cc0aa4..f369a304e9c 100644 --- a/apps/workflowengine/lib/Service/Logger.php +++ b/apps/workflowengine/lib/Service/Logger.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Service/RuleMatcher.php b/apps/workflowengine/lib/Service/RuleMatcher.php index fab2d23aa49..e5dbc08ce1f 100644 --- a/apps/workflowengine/lib/Service/RuleMatcher.php +++ b/apps/workflowengine/lib/Service/RuleMatcher.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Settings/ASettings.php b/apps/workflowengine/lib/Settings/ASettings.php index 6a03625c304..2bf7dd0218e 100644 --- a/apps/workflowengine/lib/Settings/ASettings.php +++ b/apps/workflowengine/lib/Settings/ASettings.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Settings/Admin.php b/apps/workflowengine/lib/Settings/Admin.php index fa668231b41..3f8cb00982e 100644 --- a/apps/workflowengine/lib/Settings/Admin.php +++ b/apps/workflowengine/lib/Settings/Admin.php @@ -1,4 +1,5 @@ diff --git a/apps/workflowengine/lib/Settings/Personal.php b/apps/workflowengine/lib/Settings/Personal.php index 30f52073a1c..15f4df3c7e6 100644 --- a/apps/workflowengine/lib/Settings/Personal.php +++ b/apps/workflowengine/lib/Settings/Personal.php @@ -1,4 +1,5 @@ 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 @@ 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 @@ diff --git a/lib/private/Authentication/Listeners/LoginFailedListener.php b/lib/private/Authentication/Listeners/LoginFailedListener.php index d4f46d9547f..8086194eab3 100644 --- a/lib/private/Authentication/Listeners/LoginFailedListener.php +++ b/lib/private/Authentication/Listeners/LoginFailedListener.php @@ -1,4 +1,5 @@ diff --git a/lib/private/Authentication/Login/WebAuthnChain.php b/lib/private/Authentication/Login/WebAuthnChain.php index dfc6943e853..ff6dd23e1ef 100644 --- a/lib/private/Authentication/Login/WebAuthnChain.php +++ b/lib/private/Authentication/Login/WebAuthnChain.php @@ -1,4 +1,5 @@ diff --git a/lib/private/Authentication/Login/WebAuthnLoginCommand.php b/lib/private/Authentication/Login/WebAuthnLoginCommand.php index e477a243c56..d2f613c59be 100644 --- a/lib/private/Authentication/Login/WebAuthnLoginCommand.php +++ b/lib/private/Authentication/Login/WebAuthnLoginCommand.php @@ -1,4 +1,5 @@ diff --git a/lib/private/Authentication/WebAuthn/CredentialRepository.php b/lib/private/Authentication/WebAuthn/CredentialRepository.php index c6f8cdfd888..c57af15d2e4 100644 --- a/lib/private/Authentication/WebAuthn/CredentialRepository.php +++ b/lib/private/Authentication/WebAuthn/CredentialRepository.php @@ -1,4 +1,5 @@ diff --git a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php index cd5da83805a..0b27c78efbd 100644 --- a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php +++ b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php @@ -1,4 +1,5 @@ diff --git a/lib/private/Authentication/WebAuthn/Manager.php b/lib/private/Authentication/WebAuthn/Manager.php index 180eb1543b2..e33d0e48e9b 100644 --- a/lib/private/Authentication/WebAuthn/Manager.php +++ b/lib/private/Authentication/WebAuthn/Manager.php @@ -1,4 +1,5 @@ diff --git a/lib/public/Authentication/Events/LoginFailedEvent.php b/lib/public/Authentication/Events/LoginFailedEvent.php index 15c8fb31bce..ba5a54efb45 100644 --- a/lib/public/Authentication/Events/LoginFailedEvent.php +++ b/lib/public/Authentication/Events/LoginFailedEvent.php @@ -1,4 +1,5 @@ diff --git a/tests/Core/Command/Apps/AppsDisableTest.php b/tests/Core/Command/Apps/AppsDisableTest.php index fea368f4b03..b5fd18ece22 100644 --- a/tests/Core/Command/Apps/AppsDisableTest.php +++ b/tests/Core/Command/Apps/AppsDisableTest.php @@ -1,4 +1,5 @@ diff --git a/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php b/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php index 01c60dd7511..d1c3f8b7293 100644 --- a/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php +++ b/tests/Core/Controller/ClientFlowLoginV2ControllerTest.php @@ -1,4 +1,5 @@ diff --git a/tests/Core/Controller/SvgControllerTest.php b/tests/Core/Controller/SvgControllerTest.php index 2cac635c896..4413fbb9ae5 100644 --- a/tests/Core/Controller/SvgControllerTest.php +++ b/tests/Core/Controller/SvgControllerTest.php @@ -1,4 +1,5 @@ diff --git a/tests/Core/Controller/WipeControllerTest.php b/tests/Core/Controller/WipeControllerTest.php index 73d16a63a6e..298d11848b8 100644 --- a/tests/Core/Controller/WipeControllerTest.php +++ b/tests/Core/Controller/WipeControllerTest.php @@ -1,4 +1,5 @@ diff --git a/tests/bootstrap.php b/tests/bootstrap.php index a1bc26bbf0e..7e5e4c7c547 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php b/tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php index 1cebc9ef0f2..18c255463c5 100644 --- a/tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php +++ b/tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/AppFramework/Http/FeaturePolicyTest.php b/tests/lib/AppFramework/Http/FeaturePolicyTest.php index af21457bf0a..869650f42b1 100644 --- a/tests/lib/AppFramework/Http/FeaturePolicyTest.php +++ b/tests/lib/AppFramework/Http/FeaturePolicyTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php b/tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php index 8971fe4df06..773e900545f 100644 --- a/tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php +++ b/tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php b/tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php index 6d089e3880d..2dfb04e138e 100644 --- a/tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php +++ b/tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php b/tests/lib/AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php index 62be8037cfc..0a4b3c4f34c 100644 --- a/tests/lib/AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php +++ b/tests/lib/AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Authentication/Events/RemoteWipeFinishedTest.php b/tests/lib/Authentication/Events/RemoteWipeFinishedTest.php index 49e9e79462f..4d64a1c216a 100644 --- a/tests/lib/Authentication/Events/RemoteWipeFinishedTest.php +++ b/tests/lib/Authentication/Events/RemoteWipeFinishedTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Events/RemoteWipeStartedTest.php b/tests/lib/Authentication/Events/RemoteWipeStartedTest.php index 8fbaa086656..0a962eafc12 100644 --- a/tests/lib/Authentication/Events/RemoteWipeStartedTest.php +++ b/tests/lib/Authentication/Events/RemoteWipeStartedTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php b/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php index 4f203b368c0..35d0ae26080 100644 --- a/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php +++ b/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php b/tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php index 3d47b8d4a03..2470e686902 100644 --- a/tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php +++ b/tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php b/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php index 79d362410ae..b582749e645 100644 --- a/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php +++ b/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Token/ManagerTest.php b/tests/lib/Authentication/Token/ManagerTest.php index 8cac7d5be5c..fb92b3e5018 100644 --- a/tests/lib/Authentication/Token/ManagerTest.php +++ b/tests/lib/Authentication/Token/ManagerTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php b/tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php index 58340b905c0..fc1c71e4511 100644 --- a/tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php +++ b/tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Authentication/Token/PublicKeyTokenTest.php b/tests/lib/Authentication/Token/PublicKeyTokenTest.php index d0226eb9902..35c2e0ece39 100644 --- a/tests/lib/Authentication/Token/PublicKeyTokenTest.php +++ b/tests/lib/Authentication/Token/PublicKeyTokenTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Authentication/Token/RemoteWipeTest.php b/tests/lib/Authentication/Token/RemoteWipeTest.php index 2d887a0a870..11be7590459 100644 --- a/tests/lib/Authentication/Token/RemoteWipeTest.php +++ b/tests/lib/Authentication/Token/RemoteWipeTest.php @@ -1,4 +1,6 @@ - diff --git a/tests/lib/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php b/tests/lib/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php index 9be2e64e980..50a74a6424e 100644 --- a/tests/lib/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php +++ b/tests/lib/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Avatar/GuestAvatarTest.php b/tests/lib/Avatar/GuestAvatarTest.php index 0d13655133b..1c424234f10 100644 --- a/tests/lib/Avatar/GuestAvatarTest.php +++ b/tests/lib/Avatar/GuestAvatarTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Collaboration/Resources/ProviderManagerTest.php b/tests/lib/Collaboration/Resources/ProviderManagerTest.php index d8bebe8fa6c..751e2cc1f8d 100644 --- a/tests/lib/Collaboration/Resources/ProviderManagerTest.php +++ b/tests/lib/Collaboration/Resources/ProviderManagerTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php b/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php index 214550d884d..1a3477090b9 100644 --- a/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php +++ b/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php @@ -1,4 +1,6 @@ - * diff --git a/tests/lib/Files/ObjectStore/FailWriteObjectStore.php b/tests/lib/Files/ObjectStore/FailWriteObjectStore.php index 4310d8ba27c..ad2350ea36b 100644 --- a/tests/lib/Files/ObjectStore/FailWriteObjectStore.php +++ b/tests/lib/Files/ObjectStore/FailWriteObjectStore.php @@ -1,4 +1,6 @@ - * diff --git a/tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php b/tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php index 5e8faed3347..5872056e42d 100644 --- a/tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php +++ b/tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php @@ -1,4 +1,6 @@ - * diff --git a/tests/lib/Files/SimpleFS/InMemoryFileTest.php b/tests/lib/Files/SimpleFS/InMemoryFileTest.php index 195a5d04a8f..0ba1a9ddc9f 100644 --- a/tests/lib/Files/SimpleFS/InMemoryFileTest.php +++ b/tests/lib/Files/SimpleFS/InMemoryFileTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Notification/DummyNotifier.php b/tests/lib/Notification/DummyNotifier.php index 459a694ccf8..92c1ddfb310 100644 --- a/tests/lib/Notification/DummyNotifier.php +++ b/tests/lib/Notification/DummyNotifier.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Notification/NotificationTest.php b/tests/lib/Notification/NotificationTest.php index 59aae09b6db..12c6818588c 100644 --- a/tests/lib/Notification/NotificationTest.php +++ b/tests/lib/Notification/NotificationTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php b/tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php index 01227ec359a..ef894bb56f3 100644 --- a/tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php +++ b/tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php b/tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php index 75525c306ca..6e6433adbeb 100644 --- a/tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php +++ b/tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php b/tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php index d2be124a482..4014b253f58 100644 --- a/tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php +++ b/tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php @@ -1,4 +1,5 @@ diff --git a/tests/lib/Template/IconsCacherTest.php b/tests/lib/Template/IconsCacherTest.php index bd7a175862a..eacb5c812bc 100644 --- a/tests/lib/Template/IconsCacherTest.php +++ b/tests/lib/Template/IconsCacherTest.php @@ -1,4 +1,5 @@ false, 'apps_paths' => [ -- cgit v1.2.3