diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-09-15 14:02:10 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-09-15 14:02:10 +0200 |
commit | 7953cc9494537c368b117c5e0d759b4e7b318db7 (patch) | |
tree | 3d8ff5062cee623f52787944c72820fd8d3b522f /lib/public/encryption | |
parent | e82a225d0440738a629f490c6f38e8cdc7f772c5 (diff) | |
download | nextcloud-server-7953cc9494537c368b117c5e0d759b4e7b318db7.tar.gz nextcloud-server-7953cc9494537c368b117c5e0d759b4e7b318db7.zip |
Function does return void
This function does return void and not a bool.
Diffstat (limited to 'lib/public/encryption')
-rw-r--r-- | lib/public/encryption/iencryptionmodule.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/public/encryption/iencryptionmodule.php b/lib/public/encryption/iencryptionmodule.php index a5cd7075691..0fa0dc570db 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); |