Function does return void

This function does return void and not a bool.
remotes/origin/db-empty-migrate
Lukas Reschke 10 years ago
parent e82a225d04
commit 7953cc9494
  1. 3
      apps/encryption/lib/crypto/encryption.php
  2. 1
      lib/public/encryption/iencryptionmodule.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);
}
/**

@ -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);

Loading…
Cancel
Save