diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-15 17:03:34 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-15 17:03:34 +0200 |
commit | ae9ea244f2c933b25ccfe51b55ef5265bfef3f2d (patch) | |
tree | d2d4fb2653139d5ffe151f0869073dae143520fc /apps | |
parent | 650e600b942d830460bb96de6726bdd1e8284a8e (diff) | |
parent | 7953cc9494537c368b117c5e0d759b4e7b318db7 (diff) | |
download | nextcloud-server-ae9ea244f2c933b25ccfe51b55ef5265bfef3f2d.tar.gz nextcloud-server-ae9ea244f2c933b25ccfe51b55ef5265bfef3f2d.zip |
Merge pull request #19043 from owncloud/fix-php-doc-of-encrypt-all
Function does return void
Diffstat (limited to 'apps')
-rw-r--r-- | apps/encryption/lib/crypto/encryption.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php index d2925e1b6be..c62afac83c1 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); } /** |