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 /tests/lib/Authentication/Token | |
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 'tests/lib/Authentication/Token')
4 files changed, 8 insertions, 2 deletions
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 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> 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 @@ <?php + declare(strict_types=1); /** * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> 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 @@ <?php + declare(strict_types=1); /** * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl> 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 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> |