Function does return void
This function does return void and not a bool.
This commit is contained in:
parent
e82a225d04
commit
7953cc9494
|
@ -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…
Reference in New Issue