From 90035e98c1ef53aa0c9bfaa86112c8bc407a8974 Mon Sep 17 00:00:00 2001 From: Faraz Samapoor Date: Tue, 20 Jun 2023 11:41:21 +0330 Subject: [PATCH] Update core/Command/Encryption/DecryptAll.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor --- core/Command/Encryption/DecryptAll.php | 4 ++-- 1 file 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,