Use a blank line after the opening tag

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/20379/head
Christoph Wurst 6 years ago
parent 41b5e5923a
commit 2a529e453a
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
  1. 1
      apps/settings/lib/Controller/WebAuthnController.php
  2. 1
      apps/settings/lib/Settings/Personal/Security/WebAuthn.php
  3. 1
      apps/workflowengine/lib/Check/FileName.php
  4. 1
      apps/workflowengine/lib/Check/TFileCheck.php
  5. 1
      apps/workflowengine/lib/Command/Index.php
  6. 1
      apps/workflowengine/lib/Controller/AWorkflowController.php
  7. 1
      apps/workflowengine/lib/Controller/GlobalWorkflowsController.php
  8. 1
      apps/workflowengine/lib/Controller/UserWorkflowsController.php
  9. 1
      apps/workflowengine/lib/Entity/File.php
  10. 1
      apps/workflowengine/lib/Helper/LogContext.php
  11. 1
      apps/workflowengine/lib/Helper/ScopeContext.php
  12. 1
      apps/workflowengine/lib/Migration/PopulateNewlyIntroducedDatabaseFields.php
  13. 1
      apps/workflowengine/lib/Service/Logger.php
  14. 1
      apps/workflowengine/lib/Service/RuleMatcher.php
  15. 1
      apps/workflowengine/lib/Settings/ASettings.php
  16. 1
      apps/workflowengine/lib/Settings/Admin.php
  17. 1
      apps/workflowengine/lib/Settings/Personal.php
  18. 1
      core/Controller/WebAuthnController.php
  19. 1
      core/Migrations/Version19000Date20200211083441.php
  20. 1
      lib/private/Authentication/Events/LoginFailed.php
  21. 1
      lib/private/Authentication/Listeners/LoginFailedListener.php
  22. 1
      lib/private/Authentication/Login/WebAuthnChain.php
  23. 1
      lib/private/Authentication/Login/WebAuthnLoginCommand.php
  24. 1
      lib/private/Authentication/WebAuthn/CredentialRepository.php
  25. 1
      lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php
  26. 1
      lib/private/Authentication/WebAuthn/Manager.php
  27. 1
      lib/public/Authentication/Events/LoginFailedEvent.php
  28. 1
      tests/Core/Command/Apps/AppsDisableTest.php
  29. 1
      tests/Core/Command/Apps/AppsEnableTest.php
  30. 1
      tests/Core/Controller/AppPasswordControllerTest.php
  31. 1
      tests/Core/Controller/ClientFlowLoginV2ControllerTest.php
  32. 1
      tests/Core/Controller/SvgControllerTest.php
  33. 1
      tests/Core/Controller/WipeControllerTest.php
  34. 1
      tests/bootstrap.php
  35. 4
      tests/lib/App/AppManagerTest.php
  36. 1
      tests/lib/AppFramework/Http/EmptyFeaturePolicyTest.php
  37. 1
      tests/lib/AppFramework/Http/FeaturePolicyTest.php
  38. 1
      tests/lib/AppFramework/Middleware/AdditionalScriptsMiddlewareTest.php
  39. 1
      tests/lib/AppFramework/Middleware/Security/CSPMiddlewareTest.php
  40. 1
      tests/lib/AppFramework/Middleware/Security/FeaturePolicyMiddlewareTest.php
  41. 4
      tests/lib/Authentication/Events/RemoteWipeFinishedTest.php
  42. 4
      tests/lib/Authentication/Events/RemoteWipeStartedTest.php
  43. 4
      tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php
  44. 4
      tests/lib/Authentication/Listeners/RemoteWipeEmailListenerTest.php
  45. 4
      tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php
  46. 4
      tests/lib/Authentication/Token/ManagerTest.php
  47. 1
      tests/lib/Authentication/Token/PublicKeyTokenMapperTest.php
  48. 1
      tests/lib/Authentication/Token/PublicKeyTokenTest.php
  49. 4
      tests/lib/Authentication/Token/RemoteWipeTest.php
  50. 1
      tests/lib/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDaoTest.php
  51. 1
      tests/lib/Authentication/TwoFactorAuth/ProviderLoaderTest.php
  52. 1
      tests/lib/Authentication/TwoFactorAuth/ProviderSetTest.php
  53. 4
      tests/lib/Authentication/TwoFactorAuth/RegistryTest.php
  54. 1
      tests/lib/Avatar/GuestAvatarTest.php
  55. 1
      tests/lib/Collaboration/Resources/ManagerTest.php
  56. 1
      tests/lib/Collaboration/Resources/ProviderManagerTest.php
  57. 4
      tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
  58. 4
      tests/lib/Files/ObjectStore/FailWriteObjectStore.php
  59. 4
      tests/lib/Files/ObjectStore/ObjectStoreStorageOverwrite.php
  60. 1
      tests/lib/Files/SimpleFS/InMemoryFileTest.php
  61. 1
      tests/lib/MemoryInfoTest.php
  62. 1
      tests/lib/Notification/DummyApp.php
  63. 1
      tests/lib/Notification/DummyNotifier.php
  64. 1
      tests/lib/Notification/NotificationTest.php
  65. 1
      tests/lib/Security/CSP/AddContentSecurityPolicyEventTest.php
  66. 1
      tests/lib/Security/FeaturePolicy/AddFeaturePolicyEventTest.php
  67. 1
      tests/lib/Security/FeaturePolicy/FeaturePolicyManagerTest.php
  68. 1
      tests/lib/Template/IconsCacherTest.php
  69. 1
      tests/preseed-config.php

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Daniel Kesselberg <mail@danielkesselberg.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace OC\Core\Migrations;

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Daniel Kesselberg (mail@danielkesselberg.de)

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Daniel Kesselberg (mail@danielkesselberg.de)

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare (strict_types = 1);
/**
* @copyright Copyright (c) 2018 Michael Weimann <mail@michael-weimann.eu>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
define('PHPUNIT_RUN', 1);
$configDir = getenv('CONFIG_DIR');

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Daniel Kesselberg <mail@danielkesselberg.de>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Daniel Kesselberg <mail@danielkesselberg.de>

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Robin Appelman <robin@icewind.nl>
*

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Robin Appelman <robin@icewind.nl>
*

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Robin Appelman <robin@icewind.nl>
*

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com>

@ -1,4 +1,5 @@
<?php
declare (strict_types = 1);
/**
* @author Joas Schilling <nickvergessen@owncloud.com>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>

@ -1,4 +1,5 @@
<?php
declare (strict_types = 1);
/**
* @copyright Copyright (c) 2018, John Molakvoæ (skjnldsv@protonmail.com)

@ -1,4 +1,5 @@
<?php
$CONFIG = [
'appstoreenabled' => false,
'apps_paths' => [

Loading…
Cancel
Save