diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-04-15 21:37:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 21:37:46 +0200 |
commit | 3aa8849b7dffe544e5609dabbf42ef9f4da888b8 (patch) | |
tree | 597424979d1e193d414b8d8fca2bbbe43213a19c | |
parent | 018a2917c1cb293386b1dd49303990e7cb4de7be (diff) | |
parent | 7fe8477830cfb7c06c7b1a90f9137858a6b8501b (diff) | |
download | nextcloud-server-3aa8849b7dffe544e5609dabbf42ef9f4da888b8.tar.gz nextcloud-server-3aa8849b7dffe544e5609dabbf42ef9f4da888b8.zip |
Merge pull request #20501 from nextcloud/fix/noid/run-cs-fix
Run cs:fix and fix HashWrapper code
-rw-r--r-- | lib/private/Files/Stream/HashWrapper.php | 4 | ||||
-rw-r--r-- | tests/lib/Files/Stream/HashWrapperTest.php | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/private/Files/Stream/HashWrapper.php b/lib/private/Files/Stream/HashWrapper.php index 048e50794e8..937ee521c80 100644 --- a/lib/private/Files/Stream/HashWrapper.php +++ b/lib/private/Files/Stream/HashWrapper.php @@ -1,4 +1,6 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2020 Robin Appelman <robin@icewind.nl> * diff --git a/tests/lib/Files/Stream/HashWrapperTest.php b/tests/lib/Files/Stream/HashWrapperTest.php index 7066bf857aa..e4bee18070d 100644 --- a/tests/lib/Files/Stream/HashWrapperTest.php +++ b/tests/lib/Files/Stream/HashWrapperTest.php @@ -1,4 +1,6 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2020 Robin Appelman <robin@icewind.nl> * |