diff options
author | alanmeeson <alan@carefullycalculated.co.uk> | 2021-08-30 13:31:54 +0100 |
---|---|---|
committer | Alan Meeson <alan@carefullycalculated.co.uk> | 2021-10-23 15:11:23 +0100 |
commit | 16f70e8647adeb2ab558a603dd79e1d75e5e0dce (patch) | |
tree | 7665ddffc78f4e9685437879bced403b2732d449 /lib | |
parent | 44c332a46ef3b7d0b97039cad62840f7c8b9c82f (diff) | |
download | nextcloud-server-16f70e8647adeb2ab558a603dd79e1d75e5e0dce.tar.gz nextcloud-server-16f70e8647adeb2ab558a603dd79e1d75e5e0dce.zip |
Add type hint to fread_block $blockSize param & apply cs:fix.
Signed-off-by: alanmeeson <alan@carefullycalculated.co.uk>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Encryption.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Encryption.php b/lib/private/Files/Storage/Wrapper/Encryption.php index 745568142bb..308952c2a31 100644 --- a/lib/private/Files/Storage/Wrapper/Encryption.php +++ b/lib/private/Files/Storage/Wrapper/Encryption.php @@ -612,7 +612,7 @@ class Encryption extends Wrapper { * @param int $blockSize Length of requested data block in bytes * @return string Data fetched from stream. */ - private function fread_block($handle, $blockSize): string { + private function fread_block($handle, int $blockSize): string { $remaining = $blockSize; $data = ''; @@ -623,7 +623,7 @@ class Encryption extends Wrapper { $remaining -= $chunk_len; } while (($remaining > 0) && ($chunk_len > 0)); - return $data; + return $data; } /** |