diff options
Diffstat (limited to 'core/Command/Encryption/Status.php')
-rw-r--r-- | core/Command/Encryption/Status.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Command/Encryption/Status.php b/core/Command/Encryption/Status.php index 70b7aa87768..b7a6f33d7d8 100644 --- a/core/Command/Encryption/Status.php +++ b/core/Command/Encryption/Status.php @@ -48,10 +48,11 @@ class Status extends Base { ; } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output): int { $this->writeArrayInOutputFormat($input, $output, [ 'enabled' => $this->encryptionManager->isEnabled(), 'defaultModule' => $this->encryptionManager->getDefaultEncryptionModuleId(), ]); + return 0; } } |