diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-20 11:41:21 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-20 16:24:46 +0200 |
commit | 90035e98c1ef53aa0c9bfaa86112c8bc407a8974 (patch) | |
tree | d283a18f6244fce26e9c949deff06a27d0370fd7 /core/Command | |
parent | 9c2abae59c341fa4c947d9575979dac7ca40b2dd (diff) | |
download | nextcloud-server-90035e98c1ef53aa0c9bfaa86112c8bc407a8974.tar.gz nextcloud-server-90035e98c1ef53aa0c9bfaa86112c8bc407a8974.zip |
Update core/Command/Encryption/DecryptAll.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Encryption/DecryptAll.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php index 7569605e775..137b12141f7 100644 --- a/core/Command/Encryption/DecryptAll.php +++ b/core/Command/Encryption/DecryptAll.php @@ -41,8 +41,8 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; class DecryptAll extends Command { - protected bool $wasTrashbinEnabled; - protected bool $wasMaintenanceModeEnabled; + protected bool $wasTrashbinEnabled = false; + protected bool $wasMaintenanceModeEnabled = false; public function __construct( protected IManager $encryptionManager, |