Function does return void

This function does return void and not a bool.
This commit is contained in:
Lukas Reschke 2015-09-15 14:02:10 +02:00
parent e82a225d04
commit 7953cc9494
2 changed files with 1 additions and 3 deletions

View File

@ -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);
}
/**

View File

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