diff options
author | yemkareems <yemkareems@gmail.com> | 2024-10-28 19:09:04 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-10-28 19:09:04 +0530 |
commit | b56692d002eb6e4d6acc876238495cd3a87c2c02 (patch) | |
tree | 4644862e004daed3fc8d5818aa9a753631f84bb1 | |
parent | de1460194424a2f43e36576d4b78930eb0ef372a (diff) | |
download | nextcloud-server-backport/48915/stable29.tar.gz nextcloud-server-backport/48915/stable29.zip |
fix: readonly removedbackport/48915/stable29
Signed-off-by: yemkareems <yemkareems@gmail.com>
-rw-r--r-- | lib/private/Authentication/LoginCredentials/Store.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/LoginCredentials/Store.php b/lib/private/Authentication/LoginCredentials/Store.php index c422927ee63..b354611be26 100644 --- a/lib/private/Authentication/LoginCredentials/Store.php +++ b/lib/private/Authentication/LoginCredentials/Store.php @@ -52,7 +52,7 @@ class Store implements IStore { public function __construct( ISession $session, LoggerInterface $logger, - private readonly ICrypto $crypto, + private ICrypto $crypto, ?IProvider $tokenProvider = null, ) { $this->session = $session; |