aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files
diff options
context:
space:
mode:
authorLouis <louis@chmn.me>2024-10-23 13:19:05 +0200
committerLouis Chemineau <louis@chmn.me>2024-10-23 13:20:40 +0200
commit5f69d8d8919ab09539e24b5ea92c81f3ccced4a9 (patch)
tree7b025826b21ddc706fce16dbf4169147527a8092 /lib/private/Files
parent74cd6e295a8e2e7c64e4fe38ba775986c57509a4 (diff)
downloadnextcloud-server-5f69d8d8919ab09539e24b5ea92c81f3ccced4a9.tar.gz
nextcloud-server-5f69d8d8919ab09539e24b5ea92c81f3ccced4a9.zip
fix: $uid type in Encryption streamartonge/fix/uid_type
As explained by the comment. Signed-off-by: Louis <louis@chmn.me> Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'lib/private/Files')
-rw-r--r--lib/private/Files/Stream/Encryption.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Stream/Encryption.php b/lib/private/Files/Stream/Encryption.php
index 10df9ae98e2..0d55385820c 100644
--- a/lib/private/Files/Stream/Encryption.php
+++ b/lib/private/Files/Stream/Encryption.php
@@ -42,7 +42,7 @@ class Encryption extends Wrapper {
/**
* user who perform the read/write operation null for public access
*/
- protected string $uid;
+ protected ?string $uid;
protected bool $readOnly;
protected bool $writeFlag;
protected array $expectedContextProperties;