From 7953cc9494537c368b117c5e0d759b4e7b318db7 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 15 Sep 2015 14:02:10 +0200 Subject: [PATCH] Function does return void This function does return void and not a bool. --- apps/encryption/lib/crypto/encryption.php | 3 +-- lib/public/encryption/iencryptionmodule.php | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php index d2925e1b6b..c62afac83c 100644 --- a/apps/encryption/lib/crypto/encryption.php +++ b/apps/encryption/lib/crypto/encryption.php @@ -421,10 +421,9 @@ class Encryption implements IEncryptionModule { * * @param InputInterface $input * @param OutputInterface $output write some status information to the terminal during encryption - * @return bool */ public function encryptAll(InputInterface $input, OutputInterface $output) { - return $this->encryptAll->encryptAll($input, $output); + $this->encryptAll->encryptAll($input, $output); } /** diff --git a/lib/public/encryption/iencryptionmodule.php b/lib/public/encryption/iencryptionmodule.php index a5cd707569..0fa0dc570d 100644 --- a/lib/public/encryption/iencryptionmodule.php +++ b/lib/public/encryption/iencryptionmodule.php @@ -141,7 +141,6 @@ interface IEncryptionModule { * * @param InputInterface $input * @param OutputInterface $output write some status information to the terminal during encryption - * @return bool * @since 8.2.0 */ public function encryptAll(InputInterface $input, OutputInterface $output);