Merge pull request #48851 from nextcloud/artonge/fix/uid_type

Fix $uid type in Encryption stream
This commit is contained in:
Louis 2024-10-23 14:13:33 +02:00 committed by GitHub
commit b0197c5dfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;